All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.temporal.api.workflowservice.v1.SignalWorkflowExecutionRequestOrBuilder Maven / Gradle / Ivy

There is a newer version: 1.24.3
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: temporal/api/workflowservice/v1/request_response.proto

package io.temporal.api.workflowservice.v1;

@javax.annotation.Generated(value="protoc", comments="annotations:SignalWorkflowExecutionRequestOrBuilder.java.pb.meta")
public interface SignalWorkflowExecutionRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:temporal.api.workflowservice.v1.SignalWorkflowExecutionRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   * string namespace = 1;
   * @return The namespace.
   */
  java.lang.String getNamespace();
  /**
   * string namespace = 1;
   * @return The bytes for namespace.
   */
  com.google.protobuf.ByteString
      getNamespaceBytes();

  /**
   * .temporal.api.common.v1.WorkflowExecution workflow_execution = 2;
   * @return Whether the workflowExecution field is set.
   */
  boolean hasWorkflowExecution();
  /**
   * .temporal.api.common.v1.WorkflowExecution workflow_execution = 2;
   * @return The workflowExecution.
   */
  io.temporal.api.common.v1.WorkflowExecution getWorkflowExecution();
  /**
   * .temporal.api.common.v1.WorkflowExecution workflow_execution = 2;
   */
  io.temporal.api.common.v1.WorkflowExecutionOrBuilder getWorkflowExecutionOrBuilder();

  /**
   * 
   * The workflow author-defined name of the signal to send to the workflow
   * 
* * string signal_name = 3; * @return The signalName. */ java.lang.String getSignalName(); /** *
   * The workflow author-defined name of the signal to send to the workflow
   * 
* * string signal_name = 3; * @return The bytes for signalName. */ com.google.protobuf.ByteString getSignalNameBytes(); /** *
   * Serialized value(s) to provide with the signal
   * 
* * .temporal.api.common.v1.Payloads input = 4; * @return Whether the input field is set. */ boolean hasInput(); /** *
   * Serialized value(s) to provide with the signal
   * 
* * .temporal.api.common.v1.Payloads input = 4; * @return The input. */ io.temporal.api.common.v1.Payloads getInput(); /** *
   * Serialized value(s) to provide with the signal
   * 
* * .temporal.api.common.v1.Payloads input = 4; */ io.temporal.api.common.v1.PayloadsOrBuilder getInputOrBuilder(); /** *
   * The identity of the worker/client
   * 
* * string identity = 5; * @return The identity. */ java.lang.String getIdentity(); /** *
   * The identity of the worker/client
   * 
* * string identity = 5; * @return The bytes for identity. */ com.google.protobuf.ByteString getIdentityBytes(); /** *
   * Used to de-dupe sent signals
   * 
* * string request_id = 6; * @return The requestId. */ java.lang.String getRequestId(); /** *
   * Used to de-dupe sent signals
   * 
* * string request_id = 6; * @return The bytes for requestId. */ com.google.protobuf.ByteString getRequestIdBytes(); /** *
   * Deprecated
   * 
* * string control = 7; * @return The control. */ java.lang.String getControl(); /** *
   * Deprecated
   * 
* * string control = 7; * @return The bytes for control. */ com.google.protobuf.ByteString getControlBytes(); /** *
   * Headers that are passed with the signal to the processing workflow.
   * These can include things like auth or tracing tokens.
   * 
* * .temporal.api.common.v1.Header header = 8; * @return Whether the header field is set. */ boolean hasHeader(); /** *
   * Headers that are passed with the signal to the processing workflow.
   * These can include things like auth or tracing tokens.
   * 
* * .temporal.api.common.v1.Header header = 8; * @return The header. */ io.temporal.api.common.v1.Header getHeader(); /** *
   * Headers that are passed with the signal to the processing workflow.
   * These can include things like auth or tracing tokens.
   * 
* * .temporal.api.common.v1.Header header = 8; */ io.temporal.api.common.v1.HeaderOrBuilder getHeaderOrBuilder(); /** *
   * Indicates that a new workflow task should not be generated when this signal is received.
   * 
* * bool skip_generate_workflow_task = 9; * @return The skipGenerateWorkflowTask. */ boolean getSkipGenerateWorkflowTask(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy