1
0
mirror of https://github.com/eventials/goevents.git synced 2025-05-08 19:29:15 +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()
}