Zeebe C# Client 2.7.0
C# Client to communicate with an Zeebe Gateway
|
Public Member Functions | |
IJobWorkerBuilderStep3 | Handler (JobHandler handler) |
Set the handler to process the jobs. At the end of the processing, the handler can complete the job or mark it as failed. | |
IJobWorkerBuilderStep3 | Handler (AsyncJobHandler handler) |
Set an async handler to process the jobs asynchronously. At the end of the processing, the handler can complete the job or mark it as failed. | |
IJobWorkerBuilderStep3 Zeebe.Client.Api.Worker.IJobWorkerBuilderStep2.Handler | ( | AsyncJobHandler | handler | ) |
Set an async handler to process the jobs asynchronously. At the end of the processing, the handler can complete the job or mark it as failed.
Example JobHandler implementation:
The handler must be thread-safe.
handler | the handle to process the jobs |
IJobWorkerBuilderStep3 Zeebe.Client.Api.Worker.IJobWorkerBuilderStep2.Handler | ( | JobHandler | handler | ) |
Set the handler to process the jobs. At the end of the processing, the handler can complete the job or mark it as failed.
Example JobHandler implementation:
The handler must be thread-safe.
handler | the handle to process the jobs |