To behave like a functor the object must be callable. This method is a
dispatch method. Its lookup order is:
-
process_MASKNAME method
-
process_FAMILY_NAME method
-
otherwise calls process_default
- Parameters:
event (Event object) - Event to be processed.
- Returns: bool
- By convention when used from the ProcessEvent class:
-
Returning False or None (default value) means keep on
executing next chained functors (see chain.py example).
-
Returning True instead means do not execute next processing
functions.
- Raises:
|