Fix close subscriber

This commit is contained in:
世界 2022-08-11 23:20:14 +08:00
parent 169983a8d7
commit 735372ab3c
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -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
}