minos.networks.decorators.callables.handlers module¶
- class minos.networks.decorators.callables.handlers.HandlerMeta(func, decorators=None, checkers=None)[source]¶
Bases:
objectHandler Meta class.
- add_decorator(decorator)[source]¶
Add a new decorator to the
decoratorsset.- Parameters
decorator (EnrouteDecorator) – The decorator to be added.
- Return type
None
- Returns
This method does not return anything.
- async_wrapper¶
Get the async
HandlerWrapperinstance.- Returns
A
HandlerWrapperinstance.
- check¶
Get the check decorator.
- Returns
A
CheckDecoratortype.
- checkers: set[CheckerMeta]¶
- decorators: set[EnrouteDecorator]¶
- func: Handler¶
- sync_wrapper¶
Get the sync
HandlerWrapperinstance.- Returns
A
HandlerWrapperinstance.
- property wrapper: minos.networks.decorators.callables.handlers.HandlerWrapper¶
Get the
HandlerWrapperinstance.- Return type
- Returns
A
HandlerWrapperinstance.