2016-12-01 11:40:58 -02:00
|
|
|
package messaging
|
2016-11-25 18:51:34 -02:00
|
|
|
|
2016-12-01 10:52:22 -02:00
|
|
|
type Producer interface {
|
2017-03-09 17:32:05 -03:00
|
|
|
Publish(action string, data []byte)
|
|
|
|
NotifyClose() <-chan bool
|
|
|
|
Close()
|
2016-11-25 18:51:34 -02:00
|
|
|
}
|