marvin.handlers.queue_handler
Classes
QueueHandler
- Decoupling event producers from consumers
- Implementing event buffering
- Creating event processing pipelines
- Selectively capturing specific event types
-
on_event
Process an event and add it to the queue if it passes filtering criteria. This method implements filtering logic based on the include and exclude parameters provided during initialization. Events are only added to the queue if they pass all filtering criteria. Args: event: The Event object to process Returns: None. If the event passes filtering, it is added to the queue. Otherwise, the method returns without adding the event.
Parent Module:
handlers