Enum BitControl.RpcType

java.lang.Object
java.lang.Enum<BitControl.RpcType>
org.apache.drill.exec.proto.BitControl.RpcType
All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite, com.google.protobuf.ProtocolMessageEnum, Serializable, Comparable<BitControl.RpcType>
Enclosing class:
BitControl

public static enum BitControl.RpcType extends Enum<BitControl.RpcType> implements com.google.protobuf.ProtocolMessageEnum
//// BitControl RPC ///////
 
Protobuf enum exec.bit.control.RpcType
  • Enum Constant Details

    • HANDSHAKE

      public static final BitControl.RpcType HANDSHAKE
      HANDSHAKE = 0;
    • ACK

      public static final BitControl.RpcType ACK
      ACK = 1;
    • GOODBYE

      public static final BitControl.RpcType GOODBYE
      GOODBYE = 2;
    • REQ_INITIALIZE_FRAGMENTS

      public static final BitControl.RpcType REQ_INITIALIZE_FRAGMENTS
       bit requests
       
      REQ_INITIALIZE_FRAGMENTS = 3;
    • REQ_CANCEL_FRAGMENT

      public static final BitControl.RpcType REQ_CANCEL_FRAGMENT
       send a cancellation message for a fragment, returns Ack
       
      REQ_CANCEL_FRAGMENT = 6;
    • REQ_RECEIVER_FINISHED

      public static final BitControl.RpcType REQ_RECEIVER_FINISHED
      REQ_RECEIVER_FINISHED = 7;
    • REQ_FRAGMENT_STATUS

      public static final BitControl.RpcType REQ_FRAGMENT_STATUS
       send a fragment status, return Ack
       
      REQ_FRAGMENT_STATUS = 8;
    • REQ_BIT_STATUS

      public static final BitControl.RpcType REQ_BIT_STATUS
       get bit status.
       
      REQ_BIT_STATUS = 9;
    • REQ_QUERY_STATUS

      public static final BitControl.RpcType REQ_QUERY_STATUS
      REQ_QUERY_STATUS = 10;
    • REQ_QUERY_CANCEL

      public static final BitControl.RpcType REQ_QUERY_CANCEL
      REQ_QUERY_CANCEL = 15;
    • REQ_UNPAUSE_FRAGMENT

      public static final BitControl.RpcType REQ_UNPAUSE_FRAGMENT
       send a resume message for a fragment, returns Ack
       
      REQ_UNPAUSE_FRAGMENT = 16;
    • REQ_CUSTOM

      public static final BitControl.RpcType REQ_CUSTOM
      REQ_CUSTOM = 17;
    • RESP_FRAGMENT_HANDLE

      public static final BitControl.RpcType RESP_FRAGMENT_HANDLE
       bit responses
       
      RESP_FRAGMENT_HANDLE = 11;
    • RESP_FRAGMENT_STATUS

      public static final BitControl.RpcType RESP_FRAGMENT_STATUS
      RESP_FRAGMENT_STATUS = 12;
    • RESP_BIT_STATUS

      public static final BitControl.RpcType RESP_BIT_STATUS
      RESP_BIT_STATUS = 13;
    • RESP_QUERY_STATUS

      public static final BitControl.RpcType RESP_QUERY_STATUS
      RESP_QUERY_STATUS = 14;
    • RESP_CUSTOM

      public static final BitControl.RpcType RESP_CUSTOM
      RESP_CUSTOM = 18;
    • SASL_MESSAGE

      public static final BitControl.RpcType SASL_MESSAGE
       both bit request and response
       
      SASL_MESSAGE = 19;
  • Field Details

    • HANDSHAKE_VALUE

      public static final int HANDSHAKE_VALUE
      HANDSHAKE = 0;
      See Also:
    • ACK_VALUE

      public static final int ACK_VALUE
      ACK = 1;
      See Also:
    • GOODBYE_VALUE

      public static final int GOODBYE_VALUE
      GOODBYE = 2;
      See Also:
    • REQ_INITIALIZE_FRAGMENTS_VALUE

      public static final int REQ_INITIALIZE_FRAGMENTS_VALUE
       bit requests
       
      REQ_INITIALIZE_FRAGMENTS = 3;
      See Also:
    • REQ_CANCEL_FRAGMENT_VALUE

      public static final int REQ_CANCEL_FRAGMENT_VALUE
       send a cancellation message for a fragment, returns Ack
       
      REQ_CANCEL_FRAGMENT = 6;
      See Also:
    • REQ_RECEIVER_FINISHED_VALUE

      public static final int REQ_RECEIVER_FINISHED_VALUE
      REQ_RECEIVER_FINISHED = 7;
      See Also:
    • REQ_FRAGMENT_STATUS_VALUE

      public static final int REQ_FRAGMENT_STATUS_VALUE
       send a fragment status, return Ack
       
      REQ_FRAGMENT_STATUS = 8;
      See Also:
    • REQ_BIT_STATUS_VALUE

      public static final int REQ_BIT_STATUS_VALUE
       get bit status.
       
      REQ_BIT_STATUS = 9;
      See Also:
    • REQ_QUERY_STATUS_VALUE

      public static final int REQ_QUERY_STATUS_VALUE
      REQ_QUERY_STATUS = 10;
      See Also:
    • REQ_QUERY_CANCEL_VALUE

      public static final int REQ_QUERY_CANCEL_VALUE
      REQ_QUERY_CANCEL = 15;
      See Also:
    • REQ_UNPAUSE_FRAGMENT_VALUE

      public static final int REQ_UNPAUSE_FRAGMENT_VALUE
       send a resume message for a fragment, returns Ack
       
      REQ_UNPAUSE_FRAGMENT = 16;
      See Also:
    • REQ_CUSTOM_VALUE

      public static final int REQ_CUSTOM_VALUE
      REQ_CUSTOM = 17;
      See Also:
    • RESP_FRAGMENT_HANDLE_VALUE

      public static final int RESP_FRAGMENT_HANDLE_VALUE
       bit responses
       
      RESP_FRAGMENT_HANDLE = 11;
      See Also:
    • RESP_FRAGMENT_STATUS_VALUE

      public static final int RESP_FRAGMENT_STATUS_VALUE
      RESP_FRAGMENT_STATUS = 12;
      See Also:
    • RESP_BIT_STATUS_VALUE

      public static final int RESP_BIT_STATUS_VALUE
      RESP_BIT_STATUS = 13;
      See Also:
    • RESP_QUERY_STATUS_VALUE

      public static final int RESP_QUERY_STATUS_VALUE
      RESP_QUERY_STATUS = 14;
      See Also:
    • RESP_CUSTOM_VALUE

      public static final int RESP_CUSTOM_VALUE
      RESP_CUSTOM = 18;
      See Also:
    • SASL_MESSAGE_VALUE

      public static final int SASL_MESSAGE_VALUE
       both bit request and response
       
      SASL_MESSAGE = 19;
      See Also:
  • Method Details

    • values

      public static BitControl.RpcType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static BitControl.RpcType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getNumber

      public final int getNumber()
      Specified by:
      getNumber in interface com.google.protobuf.Internal.EnumLite
      Specified by:
      getNumber in interface com.google.protobuf.ProtocolMessageEnum
    • valueOf

      @Deprecated public static BitControl.RpcType valueOf(int value)
      Deprecated.
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      value - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • forNumber

      public static BitControl.RpcType forNumber(int value)
      Parameters:
      value - The numeric wire value of the corresponding enum entry.
      Returns:
      The enum associated with the given numeric wire value.
    • internalGetValueMap

      public static com.google.protobuf.Internal.EnumLiteMap<BitControl.RpcType> internalGetValueMap()
    • getValueDescriptor

      public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
      Specified by:
      getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
    • getDescriptorForType

      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      Specified by:
      getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
    • getDescriptor

      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
    • valueOf

      public static BitControl.RpcType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      desc - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null