mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +03:00
Fix close subscriber
This commit is contained in:
parent
169983a8d7
commit
735372ab3c
1 changed files with 9 additions and 0 deletions
|
@ -1,5 +1,9 @@
|
||||||
package observable
|
package observable
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
)
|
||||||
|
|
||||||
type Subscription[T any] <-chan T
|
type Subscription[T any] <-chan T
|
||||||
|
|
||||||
type Subscriber[T any] struct {
|
type Subscriber[T any] struct {
|
||||||
|
@ -20,6 +24,11 @@ func (s *Subscriber[T]) Emit(item T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Subscriber[T]) Close() error {
|
func (s *Subscriber[T]) Close() error {
|
||||||
|
select {
|
||||||
|
case <-s.done:
|
||||||
|
return os.ErrClosed
|
||||||
|
default:
|
||||||
|
}
|
||||||
close(s.done)
|
close(s.done)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue