You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When `method_call_ctx_factory` is None, the implementation calls the registered method with unmodified args and kwargs and returns underlying method result.
22
22
23
-
When `method_call_ctx_factory` is not None, `method_call_ctx_factory` is expected to refer to the function to create the context object.
23
+
When `method_call_ctx_factory` is not None, `method_call_ctx_factory` is expected to refer to the function to create the context object.
24
24
The context object will be used to process inputs and outputs of `method` calls.
25
25
It is also possible that the context object method `handle_start_method_call`
26
26
will modify original args and kwargs before `method` call.
27
27
28
28
`method_call_ctx_factory` is a function that should have the following signature:
0 commit comments