mirror of
https://github.com/eventials/goevents.git
synced 2025-04-28 13:48:49 +08:00
8 lines
130 B
Go
8 lines
130 B
Go
package messaging
|
|
|
|
type Connection interface {
|
|
Consumer(autoAck bool) (Consumer, error)
|
|
Producer() (Producer, error)
|
|
Close()
|
|
}
|