You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sub := channel.Subscribe(ari.Events.All)
go func() {
for {
isDone := false
e := <-sub.Events()
fmt.Println("---------Receive event: ---------------", e)
}
}
here e print all events of all channels
The text was updated successfully, but these errors were encountered:
Hello i make subscribtion of event's of specific channel , but i receive events of another channel as well
channel := ca.ariClient.Channel().Get(ca.leg.Key())
sub := channel.Subscribe(ari.Events.All)
go func() {
for {
isDone := false
e := <-sub.Events()
fmt.Println("---------Receive event: ---------------", e)
}
}
here e print all events of all channels
The text was updated successfully, but these errors were encountered: