Zeebe C# Client 2.7.0
C# Client to communicate with an Zeebe Gateway
|
Classes | |
interface | IJobClient |
A client with access to all job-related operation:
| |
interface | IJobWorker |
Represents an job worker that performs jobs of a certain type. While a registration is open, the worker continuously receives jobs from the broker and hands them to a registered JobHandler. More... | |
interface | IJobWorkerBuilderStep1 |
interface | IJobWorkerBuilderStep2 |
interface | IJobWorkerBuilderStep3 |
Functions | |
delegate void | JobHandler (IJobClient client, IJob activatedJob) |
The job handler which contains the business logic. | |
delegate Task | AsyncJobHandler (IJobClient client, IJob activatedJob) |
The asynchronous job handler which contains the business logic. | |
delegate Task Zeebe.Client.Api.Worker.AsyncJobHandler | ( | IJobClient | client, |
IJob | activatedJob | ||
) |
The asynchronous job handler which contains the business logic.
client | the job client to complete or fail the job |
activatedJob | the job, which was activated by the worker |
delegate void Zeebe.Client.Api.Worker.JobHandler | ( | IJobClient | client, |
IJob | activatedJob | ||
) |
The job handler which contains the business logic.
client | the job client to complete or fail the job |
activatedJob | the job, which was activated by the worker |