Used for forwarding the event on to the next intercept module
(self, event, kwargs)
| 1882 | return await self.incoming_event_queue.get() |
| 1883 | |
| 1884 | async def forward_event(self, event, kwargs): |
| 1885 | """ |
| 1886 | Used for forwarding the event on to the next intercept module |
| 1887 | """ |
| 1888 | await self.outgoing_event_queue.put((event, kwargs)) |
| 1889 | |
| 1890 | async def queue_outgoing_event(self, event, **kwargs): |
| 1891 | """ |