Interface CompleteJobCommandStep1
- All Superinterfaces:
CommandWithCommunicationApiStep<CompleteJobCommandStep1>,FinalCommandStep<CompleteJobResponse>
- All Known Implementing Classes:
CompleteJobCommandImpl
@Deprecated
public interface CompleteJobCommandStep1
extends CommandWithCommunicationApiStep<CompleteJobCommandStep1>, FinalCommandStep<CompleteJobResponse>
Deprecated.
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Set a single variable to complete the job with.variables(InputStream variables) Deprecated.Set the variables to complete the job with.Deprecated.Set the variables to complete the job with.Deprecated.Set the variables to complete the job with.Deprecated.Set the variables to complete the job with.Methods inherited from interface io.camunda.zeebe.client.api.command.CommandWithCommunicationApiStep
useGrpc, useRestMethods inherited from interface io.camunda.zeebe.client.api.command.FinalCommandStep
requestTimeout, send
-
Method Details
-
variables
Deprecated.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
Deprecated.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
Deprecated.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
Deprecated.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
Deprecated.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.
-
CompleteJobCommandStep1