1
0
mirror of https://github.com/eventials/goevents.git synced 2025-04-29 13:49:26 +08:00
eventials.goevents/connection.go

8 lines
127 B
Go
Raw Normal View History

2016-11-28 15:35:19 -02:00
package events
2016-11-25 18:51:34 -02:00
2016-12-01 10:52:22 -02:00
type Connection interface {
Consumer(autoAck bool) (Consumer, error)
Producer() (Producer, error)
Close()
2016-11-25 18:51:34 -02:00
}