-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrefcount.go
37 lines (35 loc) · 1.04 KB
/
refcount.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
package rx
import (
"sync"
"sync/atomic"
)
// RefCount makes a Connectable[T] behave like an ordinary Observable[T].
// On first Subscribe it will call Connect on its Connectable[T] and when
// its last subscriber is Unsubscribed it will cancel the source connection by
// calling Unsubscribe on the subscription returned by the call to Connect.
func (connectable Connectable[T]) RefCount() Observable[T] {
var source struct {
sync.Mutex
refcount int32
subscription *subscription
}
observable := func(observe Observer[T], scheduler Scheduler, subscriber Subscriber) {
source.Lock()
if atomic.AddInt32(&source.refcount, 1) == 1 {
source.subscription = newSubscription(scheduler)
source.Unlock()
connectable.Connect(scheduler, source.subscription)
source.Lock()
}
source.Unlock()
subscriber.OnUnsubscribe(func() {
source.Lock()
if atomic.AddInt32(&source.refcount, -1) == 0 {
source.subscription.Unsubscribe()
}
source.Unlock()
})
connectable.Observable(observe, scheduler, subscriber)
}
return observable
}