Interface CompleteJobCommandStep1
- All Superinterfaces:
CommandWithCommunicationApiStep<CompleteJobCommandStep1>
,FinalCommandStep<CompleteJobResponse>
- All Known Implementing Classes:
CompleteJobCommandImpl
public interface CompleteJobCommandStep1
extends CommandWithCommunicationApiStep<CompleteJobCommandStep1>, FinalCommandStep<CompleteJobResponse>
-
Method Summary
Modifier and TypeMethodDescriptionSet a single variable to complete the job with.variables
(InputStream variables) Set the variables to complete the job with.Set the variables to complete the job with.Set the variables to complete the job with.Set the variables to complete the job with.Methods inherited from interface io.camunda.zeebe.client.api.command.CommandWithCommunicationApiStep
useGrpc, useRest
Methods inherited from interface io.camunda.zeebe.client.api.command.FinalCommandStep
requestTimeout, send
-
Method Details
-
variables
Set the variables to complete the job with.- Parameters:
variables
- the variables (JSON) as stream- Returns:
- the builder for this command. Call
FinalCommandStep.send()
to complete the command and send it to the broker.
-
variables
Set the variables to complete the job with.- Parameters:
variables
- the variables (JSON) as String- Returns:
- the builder for this command. Call
FinalCommandStep.send()
to complete the command and send it to the broker.
-
variables
Set the variables to complete the job with.- Parameters:
variables
- the variables as map- Returns:
- the builder for this command. Call
FinalCommandStep.send()
to complete the command and send it to the broker.
-
variables
Set the variables to complete the job with.- Parameters:
variables
- the variables as object- Returns:
- the builder for this command. Call
FinalCommandStep.send()
to complete the command and send it to the broker.
-
variable
Set a single variable to complete the job with.- Parameters:
key
- the key of the variable as stringvalue
- the value of the variable as object- Returns:
- the builder for this command. Call
FinalCommandStep.send()
to complete the command and send it to the broker.
-