Method
__init__
(self, opts, ipc_publisher, channels=None, name="EventMonitor")
Source from the content-addressed store, hash-verified
| 1281 | """ |
| 1282 | |
| 1283 | def __init__(self, opts, ipc_publisher, channels=None, name="EventMonitor"): |
| 1284 | super().__init__(name=name) |
| 1285 | self.opts = opts |
| 1286 | if channels is None: |
| 1287 | channels = [] |
| 1288 | self.channels = channels |
| 1289 | self.ipc_publisher = ipc_publisher |
| 1290 | |
| 1291 | async def handle_event(self, package): |
| 1292 | """ |
Callers
nothing calls this directly
Tested by
no test coverage detected