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