class documentation
class UpdateMethodMultiParam(Protocol[
Decorated workflow update functions implement this.
| Method | __call__ |
Generic callable type callback. |
| Method | validator |
Use to decorate a function to validate the arguments passed to the update handler. |
| Class Variable | _defn |
Undocumented |
def __call__(self, *args:
MultiParamSpec.args, **kwargs: MultiParamSpec.kwargs) -> ProtocolReturnType | Awaitable[ ProtocolReturnType]:
(source)
¶
Generic callable type callback.
def validator(self, vfunc:
Callable[ MultiParamSpec, None]) -> Callable[ MultiParamSpec, None]:
(source)
¶
Use to decorate a function to validate the arguments passed to the update handler.