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 
      Modifier and Type Method Description
      Header getHeader()
      Headers that were passed by the sender of the signal and copied by temporal server into the workflow task.
      HeaderOrBuilder getHeaderOrBuilder()
      Headers that were passed by the sender of the signal and copied by temporal server into the workflow task.
      java.lang.String getIdentity()
      id of the worker/client who sent this signal
      com.google.protobuf.ByteString getIdentityBytes()
      id of the worker/client who sent this signal
      Payloads getInput()
      Will be deserialized and provided as argument(s) to the signal handler
      PayloadsOrBuilder getInputOrBuilder()
      Will be deserialized and provided as argument(s) to the signal handler
      java.lang.String getSignalName()
      The name/type of the signal to fire
      com.google.protobuf.ByteString getSignalNameBytes()
      The name/type of the signal to fire
      boolean getSkipGenerateWorkflowTask()
      Indicates the signal did not generate a new workflow task when received.
      boolean hasHeader()
      Headers that were passed by the sender of the signal and copied by temporal server into the workflow task.
      boolean hasInput()
      Will be deserialized and provided as argument(s) to the signal handler
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • 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

        boolean getSkipGenerateWorkflowTask()
         Indicates the signal did not generate a new workflow task when received.
         
        bool skip_generate_workflow_task = 5;
        Returns:
        The skipGenerateWorkflowTask.