NatsBus is MessageBus implementation for RabbitMQ
| 13 | |
| 14 | // NatsBus is MessageBus implementation for RabbitMQ |
| 15 | type NatsBus struct { |
| 16 | Config Config |
| 17 | Log log15.Logger |
| 18 | |
| 19 | conn *nats.EncodedConn |
| 20 | countTimeouts int64 |
| 21 | } |
| 22 | |
| 23 | // OptionNatsFunc options for RabbitMQ |
| 24 | type OptionNatsFunc func(n *NatsBus) |
nothing calls this directly
no outgoing calls
no test coverage detected