Package io.temporal.api.history.v1
Interface WorkflowExecutionSignaledEventAttributesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WorkflowExecutionSignaledEventAttributes,WorkflowExecutionSignaledEventAttributes.Builder
@Generated(value="protoc", comments="annotations:WorkflowExecutionSignaledEventAttributesOrBuilder.java.pb.meta") public interface WorkflowExecutionSignaledEventAttributesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description WorkflowExecutiongetExternalWorkflowExecution()When signal origin is a workflow execution, this field is set.WorkflowExecutionOrBuildergetExternalWorkflowExecutionOrBuilder()When signal origin is a workflow execution, this field is set.HeadergetHeader()Headers that were passed by the sender of the signal and copied by temporal server into the workflow task.HeaderOrBuildergetHeaderOrBuilder()Headers that were passed by the sender of the signal and copied by temporal server into the workflow task.java.lang.StringgetIdentity()id of the worker/client who sent this signalcom.google.protobuf.ByteStringgetIdentityBytes()id of the worker/client who sent this signalPayloadsgetInput()Will be deserialized and provided as argument(s) to the signal handlerPayloadsOrBuildergetInputOrBuilder()Will be deserialized and provided as argument(s) to the signal handlerjava.lang.StringgetSignalName()The name/type of the signal to firecom.google.protobuf.ByteStringgetSignalNameBytes()The name/type of the signal to firebooleangetSkipGenerateWorkflowTask()Deprecated.temporal.api.history.v1.WorkflowExecutionSignaledEventAttributes.skip_generate_workflow_task is deprecated.booleanhasExternalWorkflowExecution()When signal origin is a workflow execution, this field is set.booleanhasHeader()Headers that were passed by the sender of the signal and copied by temporal server into the workflow task.booleanhasInput()Will be deserialized and provided as argument(s) to the signal handler-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSignalName
java.lang.String getSignalName()
The name/type of the signal to fire
string signal_name = 1;- Returns:
- The signalName.
-
getSignalNameBytes
com.google.protobuf.ByteString getSignalNameBytes()
The name/type of the signal to fire
string signal_name = 1;- Returns:
- The bytes for signalName.
-
hasInput
boolean hasInput()
Will be deserialized and provided as argument(s) to the signal handler
.temporal.api.common.v1.Payloads input = 2;- Returns:
- Whether the input field is set.
-
getInput
Payloads getInput()
Will be deserialized and provided as argument(s) to the signal handler
.temporal.api.common.v1.Payloads input = 2;- Returns:
- The input.
-
getInputOrBuilder
PayloadsOrBuilder getInputOrBuilder()
Will be deserialized and provided as argument(s) to the signal handler
.temporal.api.common.v1.Payloads input = 2;
-
getIdentity
java.lang.String getIdentity()
id of the worker/client who sent this signal
string identity = 3;- Returns:
- The identity.
-
getIdentityBytes
com.google.protobuf.ByteString getIdentityBytes()
id of the worker/client who sent this signal
string identity = 3;- Returns:
- The bytes for identity.
-
hasHeader
boolean hasHeader()
Headers that were passed by the sender of the signal and copied by temporal server into the workflow task.
.temporal.api.common.v1.Header header = 4;- Returns:
- Whether the header field is set.
-
getHeader
Header getHeader()
Headers that were passed by the sender of the signal and copied by temporal server into the workflow task.
.temporal.api.common.v1.Header header = 4;- Returns:
- The header.
-
getHeaderOrBuilder
HeaderOrBuilder getHeaderOrBuilder()
Headers that were passed by the sender of the signal and copied by temporal server into the workflow task.
.temporal.api.common.v1.Header header = 4;
-
getSkipGenerateWorkflowTask
@Deprecated boolean getSkipGenerateWorkflowTask()
Deprecated.temporal.api.history.v1.WorkflowExecutionSignaledEventAttributes.skip_generate_workflow_task is deprecated. See temporal/api/history/v1/message.proto;l=535Deprecated. This field is never respected and should always be set to false.
bool skip_generate_workflow_task = 5 [deprecated = true];- Returns:
- The skipGenerateWorkflowTask.
-
hasExternalWorkflowExecution
boolean hasExternalWorkflowExecution()
When signal origin is a workflow execution, this field is set.
.temporal.api.common.v1.WorkflowExecution external_workflow_execution = 6;- Returns:
- Whether the externalWorkflowExecution field is set.
-
getExternalWorkflowExecution
WorkflowExecution getExternalWorkflowExecution()
When signal origin is a workflow execution, this field is set.
.temporal.api.common.v1.WorkflowExecution external_workflow_execution = 6;- Returns:
- The externalWorkflowExecution.
-
getExternalWorkflowExecutionOrBuilder
WorkflowExecutionOrBuilder getExternalWorkflowExecutionOrBuilder()
When signal origin is a workflow execution, this field is set.
.temporal.api.common.v1.WorkflowExecution external_workflow_execution = 6;
-
-