-
Notifications
You must be signed in to change notification settings - Fork 0
/
bus.go
68 lines (56 loc) · 961 Bytes
/
bus.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package event
import (
"fmt"
"sync"
)
type EventKind uint8
const (
LogDebug EventKind = iota
LogInfo
LogWarning
LogError
PrintConsole
LoaderUpdate
LoaderStop
)
var events = []string{"debug", "info", "warning", "error", "console", "update", "stop"}
func (e EventKind) String() string {
return events[e]
}
type Event interface {
Kind() EventKind
Source() string
fmt.Stringer
}
type EventBus struct {
eventChan chan Event
wg sync.WaitGroup
}
func NewEventBus() *EventBus {
return &EventBus{
eventChan: make(chan Event),
}
}
func (bus *EventBus) Publish(event Event) {
bus.wg.Add(1)
go func() {
bus.eventChan <- event
bus.wg.Done()
}()
}
func (bus *EventBus) Subscribe(callback func(event Event)) {
go func() {
for {
select {
case event := <-bus.eventChan:
callback(event)
}
}
}()
}
func (bus *EventBus) Drain() {
bus.Subscribe(func(event Event) {})
}
func (bus *EventBus) Close() {
bus.wg.Wait()
}