Interface CorrelateMessageCommandStep1.CorrelateMessageCommandStep3
- All Superinterfaces:
CommandWithTenantStep<CorrelateMessageCommandStep1.CorrelateMessageCommandStep3>,FinalCommandStep<CorrelateMessageResponse>
- All Known Implementing Classes:
CorrelateMessageCommandImpl
- Enclosing interface:
CorrelateMessageCommandStep1
public static interface CorrelateMessageCommandStep1.CorrelateMessageCommandStep3
extends CommandWithTenantStep<CorrelateMessageCommandStep1.CorrelateMessageCommandStep3>, FinalCommandStep<CorrelateMessageResponse>
-
Field Summary
Fields inherited from interface io.camunda.zeebe.client.api.command.CommandWithTenantStep
DEFAULT_TENANT_IDENTIFIER -
Method Summary
Modifier and TypeMethodDescriptionSet a single variable of the message.variables(InputStream variables) Set the variables of the message.Set the variables of the message.Set the variables of the message.Set the variables of the message.Methods inherited from interface io.camunda.zeebe.client.api.command.CommandWithTenantStep
tenantIdMethods inherited from interface io.camunda.zeebe.client.api.command.FinalCommandStep
requestTimeout, send
-
Method Details
-
variables
Set the variables of the message.- 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 of the message.- 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 of the message.- 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 of the message.- 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 of the message.- 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.
-