Interface BroadcastSignalCommandStep1.BroadcastSignalCommandStep2
- All Superinterfaces:
CommandWithTenantStep<BroadcastSignalCommandStep1.BroadcastSignalCommandStep2>
,FinalCommandStep<BroadcastSignalResponse>
- All Known Implementing Classes:
BroadcastSignalCommandImpl
- Enclosing interface:
BroadcastSignalCommandStep1
public static interface BroadcastSignalCommandStep1.BroadcastSignalCommandStep2
extends CommandWithTenantStep<BroadcastSignalCommandStep1.BroadcastSignalCommandStep2>, FinalCommandStep<BroadcastSignalResponse>
-
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 signal.variables
(InputStream variables) Set the variables of the signal.Set the variables of the signal.Set the variables of the signal.Set the variables of the signal.Methods inherited from interface io.camunda.zeebe.client.api.command.CommandWithTenantStep
tenantId
Methods inherited from interface io.camunda.zeebe.client.api.command.FinalCommandStep
requestTimeout, send
-
Method Details
-
variables
Set the variables of the signal.- 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 signal.- 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 signal.- 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 signal.- 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 signal.- 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.
-