RabbitmqBus is MessageBus implementation for RabbitMQ
| 36 | |
| 37 | // RabbitmqBus is MessageBus implementation for RabbitMQ |
| 38 | type RabbitmqBus struct { |
| 39 | Config Config |
| 40 | Log log15.Logger |
| 41 | |
| 42 | conn *amqp091.Connection |
| 43 | channel *amqp091.Channel |
| 44 | countTimeouts int64 |
| 45 | isClosed bool |
| 46 | mu sync.RWMutex |
| 47 | } |
| 48 | |
| 49 | // OptionRabbitmqFunc options for RabbitMQ |
| 50 | type OptionRabbitmqFunc func(n *RabbitmqBus) |
nothing calls this directly
no outgoing calls
no test coverage detected