Zeebe C# Client 2.7.0
C# Client to communicate with an Zeebe Gateway
|
A client with access to all job-related operation:
Public Member Functions | |
ICompleteJobCommandStep1 | NewCompleteJobCommand (long jobKey) |
Command to complete a job. | |
ICompleteJobCommandStep1 | NewCompleteJobCommand (IJob activatedJob) |
Command to complete a job. | |
IFailJobCommandStep1 | NewFailCommand (long jobKey) |
Command to mark a job as failed. | |
IThrowErrorCommandStep1 | NewThrowErrorCommand (long jobKey) |
Command to report a business error (i.e. non-technical) that occurs while processing a job. | |
A client with access to all job-related operation:
ICompleteJobCommandStep1 Zeebe.Client.Api.Worker.IJobClient.NewCompleteJobCommand | ( | IJob | activatedJob | ) |
Command to complete a job.
The job is linked to a process instance, which means this command will complete the related activity and continue the flow.
activatedJob | the job, which should be completed |
ICompleteJobCommandStep1 Zeebe.Client.Api.Worker.IJobClient.NewCompleteJobCommand | ( | long | jobKey | ) |
Command to complete a job.
The job is linked to a process instance, which means this command will complete the related activity and continue the flow.
jobKey | the key which identifies the job |
IFailJobCommandStep1 Zeebe.Client.Api.Worker.IJobClient.NewFailCommand | ( | long | jobKey | ) |
Command to mark a job as failed.
If the given retries are greater than zero then this job will be picked up again by a job worker. Otherwise, an incident is created for this job.
jobKey | the key which identifies the job |
IThrowErrorCommandStep1 Zeebe.Client.Api.Worker.IJobClient.NewThrowErrorCommand | ( | long | jobKey | ) |
Command to report a business error (i.e. non-technical) that occurs while processing a job.
jobKey | the key which identifies the job |