-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
Description
Hi,
can you select between buffered and unbuffered broadcasting channel?
I would like to send a broadcast message to routine1 and routine2 using a broadcast channel...
go receiveData() {
broadcast <- rcv
}
go routine1() {
msg := <- broadcast
}
go routine2() {
msg := <- broadcast
}
Thanks,
Gerald