Skip to content

Instantly share code, notes, and snippets.

@glober-vaibhav
Created January 9, 2023 13:06
Show Gist options
  • Save glober-vaibhav/ead3ba95df07ad6b2becfa010dd4f8dc to your computer and use it in GitHub Desktop.
Save glober-vaibhav/ead3ba95df07ad6b2becfa010dd4f8dc to your computer and use it in GitHub Desktop.
// Publish publishes a message to a topic
func (b *Agent) Publish(topic string, msg string) {
b.mu.Lock()
defer b.mu.Unlock()
if b.closed {
return
}
for _, ch := range b.subs[topic] {
ch <- msg
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment