mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +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
|
||||
|
||||
import (
|
||||
"os"
|
||||
)
|
||||
|
||||
type Subscription[T any] <-chan T
|
||||
|
||||
type Subscriber[T any] struct {
|
||||
|
@ -20,6 +24,11 @@ func (s *Subscriber[T]) Emit(item T) {
|
|||
}
|
||||
|
||||
func (s *Subscriber[T]) Close() error {
|
||||
select {
|
||||
case <-s.done:
|
||||
return os.ErrClosed
|
||||
default:
|
||||
}
|
||||
close(s.done)
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue