class documentation
class SyncOperationHandler(OperationHandler[
Constructor: SyncOperationHandler(start)
An nexusrpc.handler.OperationHandler
that is limited to responding synchronously.
The name 'SyncOperationHandler' means that it responds synchronously, in the sense that the start method delivers the final operation result as its return value, rather than returning an operation token representing an in-progress operation.
This version of the class uses def
methods. For the async version, see
nexusrpc.handler.SyncOperationHandler
.
Method | __init__ |
Undocumented |
Method | cancel |
Undocumented |
Method | fetch |
Undocumented |
Method | fetch |
Undocumented |
Method | start |
Start the operation and return its final result synchronously. |
Instance Variable | _start |
Undocumented |