Prevent multiple close of channel
Pyxis/orion/pipeline/head There was a failure building this commit
Details
Pyxis/orion/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
e7bec24f0f
commit
c659a98587
|
@ -2,6 +2,7 @@ package reachview
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"sync"
|
||||||
|
|
||||||
gosocketio "forge.cadoles.com/Pyxis/golang-socketio"
|
gosocketio "forge.cadoles.com/Pyxis/golang-socketio"
|
||||||
"github.com/mitchellh/mapstructure"
|
"github.com/mitchellh/mapstructure"
|
||||||
|
@ -31,6 +32,8 @@ type Broadcast struct {
|
||||||
func (c *Client) Broadcast(ctx context.Context) (chan Broadcast, error) {
|
func (c *Client) Broadcast(ctx context.Context) (chan Broadcast, error) {
|
||||||
out := make(chan Broadcast)
|
out := make(chan Broadcast)
|
||||||
|
|
||||||
|
closer := new(sync.Once)
|
||||||
|
|
||||||
handler := func(_ *gosocketio.Channel, data interface{}) {
|
handler := func(_ *gosocketio.Channel, data interface{}) {
|
||||||
res := Broadcast{}
|
res := Broadcast{}
|
||||||
if err := mapstructure.WeakDecode(data, &res); err != nil {
|
if err := mapstructure.WeakDecode(data, &res); err != nil {
|
||||||
|
@ -38,8 +41,12 @@ func (c *Client) Broadcast(ctx context.Context) (chan Broadcast, error) {
|
||||||
}
|
}
|
||||||
select {
|
select {
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
|
closer.Do(func() {
|
||||||
c.Off(eventBroadcast)
|
c.Off(eventBroadcast)
|
||||||
close(out)
|
close(out)
|
||||||
|
})
|
||||||
|
|
||||||
|
return
|
||||||
default:
|
default:
|
||||||
out <- res
|
out <- res
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue