hybridgroup.gobot/event.go

36 lines
659 B
Go
Raw Normal View History

2014-06-12 02:37:20 +08:00
package gobot
import "sync"
2014-07-14 11:27:38 +08:00
type callback struct {
f func(interface{})
once bool
}
// Event executes the list of Callbacks when Chan is written to.
2014-06-12 02:37:20 +08:00
type Event struct {
sync.Mutex
2014-07-14 11:27:38 +08:00
Callbacks []callback
2014-06-12 02:37:20 +08:00
}
// NewEvent returns a new Event which is now listening for data.
2014-06-12 02:37:20 +08:00
func NewEvent() *Event {
return &Event{}
2014-06-12 02:37:20 +08:00
}
// Write writes data to the Event, it will not block and will not buffer if there
// are no active subscribers to the Event.
2014-06-12 02:37:20 +08:00
func (e *Event) Write(data interface{}) {
e.Lock()
defer e.Unlock()
2014-06-12 02:37:20 +08:00
tmp := []callback{}
for _, cb := range e.Callbacks {
go cb.f(data)
if !cb.once {
tmp = append(tmp, cb)
2014-06-12 02:37:20 +08:00
}
}
e.Callbacks = tmp
2014-06-12 02:37:20 +08:00
}