Enum ProcessingMode.BodySendMode

  • All Implemented Interfaces:
    com.google.protobuf.Internal.EnumLite, com.google.protobuf.ProtocolMessageEnum, Serializable, Comparable<ProcessingMode.BodySendMode>
    Enclosing class:
    ProcessingMode

    public static enum ProcessingMode.BodySendMode
    extends Enum<ProcessingMode.BodySendMode>
    implements com.google.protobuf.ProtocolMessageEnum
     Control how the request and response bodies are handled
     
    Protobuf enum envoy.extensions.filters.http.ext_proc.v3.ProcessingMode.BodySendMode
    • Enum Constant Detail

      • STREAMED

        public static final ProcessingMode.BodySendMode STREAMED
         Stream the body to the server in pieces as they arrive at the
         proxy.
         
        STREAMED = 1;
      • BUFFERED

        public static final ProcessingMode.BodySendMode BUFFERED
         Buffer the message body in memory and send the entire body at once.
         If the body exceeds the configured buffer limit, then the
         downstream system will receive an error.
         
        BUFFERED = 2;
      • BUFFERED_PARTIAL

        public static final ProcessingMode.BodySendMode BUFFERED_PARTIAL
         Buffer the message body in memory and send the entire body in one
         chunk. If the body exceeds the configured buffer limit, then the body contents
         up to the buffer limit will be sent.
         
        BUFFERED_PARTIAL = 3;
    • Field Detail

      • NONE_VALUE

        public static final int NONE_VALUE
         Do not send the body at all. This is the default.
         
        NONE = 0;
        See Also:
        Constant Field Values
      • STREAMED_VALUE

        public static final int STREAMED_VALUE
         Stream the body to the server in pieces as they arrive at the
         proxy.
         
        STREAMED = 1;
        See Also:
        Constant Field Values
      • BUFFERED_VALUE

        public static final int BUFFERED_VALUE
         Buffer the message body in memory and send the entire body at once.
         If the body exceeds the configured buffer limit, then the
         downstream system will receive an error.
         
        BUFFERED = 2;
        See Also:
        Constant Field Values
      • BUFFERED_PARTIAL_VALUE

        public static final int BUFFERED_PARTIAL_VALUE
         Buffer the message body in memory and send the entire body in one
         chunk. If the body exceeds the configured buffer limit, then the body contents
         up to the buffer limit will be sent.
         
        BUFFERED_PARTIAL = 3;
        See Also:
        Constant Field Values
    • Method Detail

      • values

        public static ProcessingMode.BodySendMode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ProcessingMode.BodySendMode c : ProcessingMode.BodySendMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ProcessingMode.BodySendMode 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 ProcessingMode.BodySendMode 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 ProcessingMode.BodySendMode forNumber​(int value)
        Parameters:
        value - The numeric wire value of the corresponding enum entry.
        Returns:
        The enum associated with the given numeric wire value.
      • 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 ProcessingMode.BodySendMode 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