-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlistener.go
46 lines (40 loc) · 988 Bytes
/
listener.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
package multicast
// Listener represents a listener which will receive messages
// from a channel.
type Listener[T any] struct {
C <-chan T
f chan T
}
// NewListener creates a new listener which will forward messages
// it receives on its f channel before exposing them on its C
// channel.
// You will very rarely need to use this method directly in your
// applications, prefer using From instead.
func NewListener[T any](source <-chan T) *Listener[T] {
out := make(chan T, 0)
l := &Listener[T]{
C: out,
}
go func() {
for v := range source {
if l.f != nil {
l.f <- v
}
out <- v
}
if l.f != nil {
close(l.f)
}
close(out)
}()
return l
}
// Chain is a shortcut which updates an existing listener to forward
// to a new listener and then returns the new listener.
// You will generally not need to make use of this method in your
// applications.
func (l *Listener[T]) Chain() *Listener[T] {
f := make(chan T)
l.f = f
return NewListener[T](f)
}