class documentation

class InterceptorHandlerInfo:

View In Hierarchy

Data class to hold information about an interceptor handler method.

Class Variable func The interceptor handler function (bound method).
Class Variable operation The operations this interceptor handler is interested in.
Class Variable phase The phases this interceptor handler is interested in.
Class Variable priority The priority of this interceptor handler. Handlers with lower priority are executed first.
Class Variable resource The resource types this interceptor handler is interested in.
func: Callable =

The interceptor handler function (bound method).

operation: frozenset[Operation] =

The operations this interceptor handler is interested in.

phase: frozenset[Phase] =

The phases this interceptor handler is interested in.

priority: int =

The priority of this interceptor handler. Handlers with lower priority are executed first.

resource: frozenset[ResourceTypes] =

The resource types this interceptor handler is interested in.