Interface InputOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Input, Input.Builder

    @Generated(value="protoc",
               comments="annotations:InputOrBuilder.java.pb.meta")
    public interface InputOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Payloads getArgs()
      The arguments to pass to the named handler.
      PayloadsOrBuilder getArgsOrBuilder()
      The arguments to pass to the named handler.
      Header getHeader()
      Headers that are passed with the update from the requesting entity.
      HeaderOrBuilder getHeaderOrBuilder()
      Headers that are passed with the update from the requesting entity.
      java.lang.String getName()
      The name of the input handler to invoke on the target workflow
      com.google.protobuf.ByteString getNameBytes()
      The name of the input handler to invoke on the target workflow
      boolean hasArgs()
      The arguments to pass to the named handler.
      boolean hasHeader()
      Headers that are passed with the update from the requesting entity.
      • 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

      • hasHeader

        boolean hasHeader()
         Headers that are passed with the update from the requesting entity.
         These can include things like auth or tracing tokens.
         
        .temporal.api.common.v1.Header header = 1;
        Returns:
        Whether the header field is set.
      • getHeader

        Header getHeader()
         Headers that are passed with the update from the requesting entity.
         These can include things like auth or tracing tokens.
         
        .temporal.api.common.v1.Header header = 1;
        Returns:
        The header.
      • getHeaderOrBuilder

        HeaderOrBuilder getHeaderOrBuilder()
         Headers that are passed with the update from the requesting entity.
         These can include things like auth or tracing tokens.
         
        .temporal.api.common.v1.Header header = 1;
      • getName

        java.lang.String getName()
         The name of the input handler to invoke on the target workflow
         
        string name = 2;
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         The name of the input handler to invoke on the target workflow
         
        string name = 2;
        Returns:
        The bytes for name.
      • hasArgs

        boolean hasArgs()
         The arguments to pass to the named handler.
         
        .temporal.api.common.v1.Payloads args = 3;
        Returns:
        Whether the args field is set.
      • getArgs

        Payloads getArgs()
         The arguments to pass to the named handler.
         
        .temporal.api.common.v1.Payloads args = 3;
        Returns:
        The args.
      • getArgsOrBuilder

        PayloadsOrBuilder getArgsOrBuilder()
         The arguments to pass to the named handler.
         
        .temporal.api.common.v1.Payloads args = 3;