Package io.zeebe.client.api.command
Interface CompleteJobCommandStep1
-
- All Superinterfaces:
FinalCommandStep<CompleteJobResponse>
- All Known Implementing Classes:
CompleteJobCommandImpl
public interface CompleteJobCommandStep1 extends FinalCommandStep<CompleteJobResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompleteJobCommandStep1
variables(InputStream variables)
Set the variables to complete the job with.CompleteJobCommandStep1
variables(Object variables)
Set the variables to complete the job with.CompleteJobCommandStep1
variables(String variables)
Set the variables to complete the job with.CompleteJobCommandStep1
variables(Map<String,Object> variables)
Set the variables to complete the job with.-
Methods inherited from interface io.zeebe.client.api.command.FinalCommandStep
requestTimeout, send
-
-
-
-
Method Detail
-
variables
CompleteJobCommandStep1 variables(InputStream 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
CompleteJobCommandStep1 variables(String 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
CompleteJobCommandStep1 variables(Map<String,Object> 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
CompleteJobCommandStep1 variables(Object 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.
-
-