Enum ProcessingMode.BodySendMode
- java.lang.Object
-
- java.lang.Enum<ProcessingMode.BodySendMode>
-
- io.envoyproxy.envoy.extensions.filters.http.ext_proc.v3.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 enumenvoy.extensions.filters.http.ext_proc.v3.ProcessingMode.BodySendMode
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUFFEREDBuffer the message body in memory and send the entire body at once.BUFFERED_PARTIALBuffer the message body in memory and send the entire body in one chunk.NONEDo not send the body at all.STREAMEDStream the body to the server in pieces as they arrive at the proxy.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intBUFFERED_PARTIAL_VALUEBuffer the message body in memory and send the entire body in one chunk.static intBUFFERED_VALUEBuffer the message body in memory and send the entire body at once.static intNONE_VALUEDo not send the body at all.static intSTREAMED_VALUEStream the body to the server in pieces as they arrive at the proxy.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ProcessingMode.BodySendModeforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<ProcessingMode.BodySendMode>internalGetValueMap()static ProcessingMode.BodySendModevalueOf(int value)Deprecated.static ProcessingMode.BodySendModevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static ProcessingMode.BodySendModevalueOf(String name)Returns the enum constant of this type with the specified name.static ProcessingMode.BodySendMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ProcessingMode.BodySendMode NONE
Do not send the body at all. This is the default.
NONE = 0;
-
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;
-
UNRECOGNIZED
public static final ProcessingMode.BodySendMode UNRECOGNIZED
-
-
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 nameNullPointerException- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.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 nameNullPointerException- 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.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<ProcessingMode.BodySendMode> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.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 nameNullPointerException- if the argument is null
-
-