1
0
mirror of https://github.com/eventials/goevents.git synced 2025-04-24 13:48:53 +08:00
2017-03-09 17:32:05 -03:00

8 lines
120 B
Go

package messaging
type Producer interface {
Publish(action string, data []byte)
NotifyClose() <-chan bool
Close()
}