(handler *eventHandler, topic string, args ...interface{})
| 172 | } |
| 173 | |
| 174 | func (bus *ChainBus) doPublish(handler *eventHandler, topic string, args ...interface{}) { |
| 175 | passedArguments := bus.setUpPublish(topic, args...) |
| 176 | handler.callBack.Call(passedArguments) |
| 177 | } |
| 178 | |
| 179 | func (bus *ChainBus) doPublishAsync(handler *eventHandler, topic string, args ...interface{}) { |
| 180 | defer bus.wg.Done() |
no test coverage detected