Bus is an event bus for ARI events. It receives and redistributes events based on a subscription model.
| 8 | // Bus is an event bus for ARI events. It receives and |
| 9 | // redistributes events based on a subscription model. |
| 10 | type Bus interface { |
| 11 | Close() |
| 12 | Sender |
| 13 | Subscriber |
| 14 | } |
| 15 | |
| 16 | // A Sender is an entity which can send event bus messages |
| 17 | type Sender interface { |
no outgoing calls
no test coverage detected