Interface ProcessingModeOrBuilder

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

public interface ProcessingModeOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Controls whether inbound (read) data from the client is sent to the external processor.
    int
    Controls whether inbound (read) data from the client is sent to the external processor.
    Controls whether outbound (write) data to the client is sent to the external processor.
    int
    Controls whether outbound (write) data to the client is sent to the external processor.

    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 Details

    • getProcessReadValue

      int getProcessReadValue()
       Controls whether inbound (read) data from the client is sent to the external processor.
       Default: STREAMED
       
      .envoy.extensions.filters.network.ext_proc.v3.ProcessingMode.DataSendMode process_read = 1;
      Returns:
      The enum numeric value on the wire for processRead.
    • getProcessRead

      ProcessingMode.DataSendMode getProcessRead()
       Controls whether inbound (read) data from the client is sent to the external processor.
       Default: STREAMED
       
      .envoy.extensions.filters.network.ext_proc.v3.ProcessingMode.DataSendMode process_read = 1;
      Returns:
      The processRead.
    • getProcessWriteValue

      int getProcessWriteValue()
       Controls whether outbound (write) data to the client is sent to the external processor.
       Default: STREAMED
       
      .envoy.extensions.filters.network.ext_proc.v3.ProcessingMode.DataSendMode process_write = 2;
      Returns:
      The enum numeric value on the wire for processWrite.
    • getProcessWrite

      ProcessingMode.DataSendMode getProcessWrite()
       Controls whether outbound (write) data to the client is sent to the external processor.
       Default: STREAMED
       
      .envoy.extensions.filters.network.ext_proc.v3.ProcessingMode.DataSendMode process_write = 2;
      Returns:
      The processWrite.