module documentation
Undocumented
Function | operation |
Decorator marking an operation handler factory method in a service handler class. |
Type Variable | F |
Undocumented |
Type Variable |
|
Undocumented |
@overload
@overload
def operation_handler(*, name:
str | None
= None) -> Callable[ [ OperationHandlerFactoryT], OperationHandlerFactoryT]
:Decorator marking an operation handler factory method in a service handler class.
An operation handler factory method is a method that takes no arguments other than
self
and returns an OperationHandler
instance.
Parameters | |
method:OperationHandlerFactoryT | None | The method to decorate. |
name:str | None | Optional name for the operation. If not provided, the method name will be used. |
Returns | |
OperationHandlerFactoryT | Callable[ | Undocumented |
OperationHandlerFactoryT =
¶
Undocumented
Value |
|