Documentation ¶
Overview ¶
Package events provides event subscription and polling functionality.
Index ¶
Constants ¶
View Source
const BufferSize = 64
Variables ¶
View Source
var ( ErrTimeout = errors.New("timeout") ErrClosed = errors.New("closed") )
View Source
var Default = NewLogger()
Functions ¶
This section is empty.
Types ¶
type BufferedSubscription ¶
type BufferedSubscription struct {
// contains filtered or unexported fields
}
func NewBufferedSubscription ¶
func NewBufferedSubscription(s *Subscription, size int) *BufferedSubscription
type EventType ¶
type EventType int
const ( Ping EventType = 1 << iota Starting StartupComplete DeviceDiscovered DeviceConnected DeviceDisconnected DeviceRejected LocalIndexUpdated RemoteIndexUpdated ItemStarted ItemFinished StateChanged FolderRejected ConfigSaved DownloadProgress FolderSummary FolderCompletion AllEvents = (1 << iota) - 1 )
func (EventType) MarshalText ¶
type Logger ¶
type Logger struct {
// contains filtered or unexported fields
}
func (*Logger) Subscribe ¶
func (l *Logger) Subscribe(mask EventType) *Subscription
func (*Logger) Unsubscribe ¶
func (l *Logger) Unsubscribe(s *Subscription)
type Subscription ¶
type Subscription struct {
// contains filtered or unexported fields
}
func (*Subscription) C ¶ added in v0.10.19
func (s *Subscription) C() <-chan Event
Click to show internal directories.
Click to hide internal directories.