Versions in this module Expand all Collapse all v0 v0.1.0 Dec 8, 2017 Changes in this version + const ESC + var DefaultInterval = 50 * time.Millisecond + var DefaultTerminalWidth = 80 + type Dator interface + GetLastLine func() string + GetName func() string + IsClosed func() bool + func NewDator(name string) Dator + type DefaultDator struct + func (this *DefaultDator) Close() error + func (this *DefaultDator) GetLastLine() string + func (this *DefaultDator) GetName() string + func (this *DefaultDator) IsClosed() bool + type Manidator struct + Interval time.Duration + func New(dators ...Dator) *Manidator + func (this *Manidator) Add(dators ...Dator) + func (this *Manidator) Begin(ctx context.Context) + func (this *Manidator) Done() chan struct{} + func (this *Manidator) Stop()