mirror of
https://github.com/eventials/goevents.git
synced 2025-04-24 13:48:53 +08:00
8 lines
120 B
Go
8 lines
120 B
Go
package messaging
|
|
|
|
type Producer interface {
|
|
Publish(action string, data []byte)
|
|
NotifyClose() <-chan bool
|
|
Close()
|
|
}
|