Class BufferFactoryConfig.Builder

  • All Implemented Interfaces:
    com.google.protobuf.Message.Builder, com.google.protobuf.MessageLite.Builder, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, BufferFactoryConfigOrBuilder, Cloneable
    Enclosing class:
    BufferFactoryConfig

    public static final class BufferFactoryConfig.Builder
    extends com.google.protobuf.GeneratedMessageV3.Builder<BufferFactoryConfig.Builder>
    implements BufferFactoryConfigOrBuilder
     Configuration for which accounts the WatermarkBuffer Factories should
     track.
     
    Protobuf type envoy.config.overload.v3.BufferFactoryConfig
    • Method Detail

      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<BufferFactoryConfig.Builder>
      • clear

        public BufferFactoryConfig.Builder clear()
        Specified by:
        clear in interface com.google.protobuf.Message.Builder
        Specified by:
        clear in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clear in class com.google.protobuf.GeneratedMessageV3.Builder<BufferFactoryConfig.Builder>
      • getDescriptorForType

        public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.Message.Builder
        Specified by:
        getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
        Overrides:
        getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<BufferFactoryConfig.Builder>
      • getDefaultInstanceForType

        public BufferFactoryConfig getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      • build

        public BufferFactoryConfig build()
        Specified by:
        build in interface com.google.protobuf.Message.Builder
        Specified by:
        build in interface com.google.protobuf.MessageLite.Builder
      • buildPartial

        public BufferFactoryConfig buildPartial()
        Specified by:
        buildPartial in interface com.google.protobuf.Message.Builder
        Specified by:
        buildPartial in interface com.google.protobuf.MessageLite.Builder
      • clone

        public BufferFactoryConfig.Builder clone()
        Specified by:
        clone in interface com.google.protobuf.Message.Builder
        Specified by:
        clone in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clone in class com.google.protobuf.GeneratedMessageV3.Builder<BufferFactoryConfig.Builder>
      • setField

        public BufferFactoryConfig.Builder setField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                    Object value)
        Specified by:
        setField in interface com.google.protobuf.Message.Builder
        Overrides:
        setField in class com.google.protobuf.GeneratedMessageV3.Builder<BufferFactoryConfig.Builder>
      • clearField

        public BufferFactoryConfig.Builder clearField​(com.google.protobuf.Descriptors.FieldDescriptor field)
        Specified by:
        clearField in interface com.google.protobuf.Message.Builder
        Overrides:
        clearField in class com.google.protobuf.GeneratedMessageV3.Builder<BufferFactoryConfig.Builder>
      • clearOneof

        public BufferFactoryConfig.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
        Specified by:
        clearOneof in interface com.google.protobuf.Message.Builder
        Overrides:
        clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<BufferFactoryConfig.Builder>
      • setRepeatedField

        public BufferFactoryConfig.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                            int index,
                                                            Object value)
        Specified by:
        setRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<BufferFactoryConfig.Builder>
      • addRepeatedField

        public BufferFactoryConfig.Builder addRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                            Object value)
        Specified by:
        addRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        addRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<BufferFactoryConfig.Builder>
      • mergeFrom

        public BufferFactoryConfig.Builder mergeFrom​(com.google.protobuf.Message other)
        Specified by:
        mergeFrom in interface com.google.protobuf.Message.Builder
        Overrides:
        mergeFrom in class com.google.protobuf.AbstractMessage.Builder<BufferFactoryConfig.Builder>
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<BufferFactoryConfig.Builder>
      • mergeFrom

        public BufferFactoryConfig.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                              throws IOException
        Specified by:
        mergeFrom in interface com.google.protobuf.Message.Builder
        Specified by:
        mergeFrom in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        mergeFrom in class com.google.protobuf.AbstractMessage.Builder<BufferFactoryConfig.Builder>
        Throws:
        IOException
      • getMinimumAccountToTrackPowerOfTwo

        public int getMinimumAccountToTrackPowerOfTwo()
         The minimum power of two at which Envoy starts tracking an account.
         Envoy has 8 power of two buckets starting with the provided exponent below.
         Concretely the 1st bucket contains accounts for streams that use
         [2^minimum_account_to_track_power_of_two,
         2^(minimum_account_to_track_power_of_two + 1)) bytes.
         With the 8th bucket tracking accounts
         >= 128 * 2^minimum_account_to_track_power_of_two.
         The maximum value is 56, since we're using uint64_t for bytes counting,
         and that's the last value that would use the 8 buckets. In practice,
         we don't expect the proxy to be holding 2^56 bytes.
         If omitted, Envoy should not do any tracking.
         
        uint32 minimum_account_to_track_power_of_two = 1 [(.validate.rules) = { ... }
        Specified by:
        getMinimumAccountToTrackPowerOfTwo in interface BufferFactoryConfigOrBuilder
        Returns:
        The minimumAccountToTrackPowerOfTwo.
      • setMinimumAccountToTrackPowerOfTwo

        public BufferFactoryConfig.Builder setMinimumAccountToTrackPowerOfTwo​(int value)
         The minimum power of two at which Envoy starts tracking an account.
         Envoy has 8 power of two buckets starting with the provided exponent below.
         Concretely the 1st bucket contains accounts for streams that use
         [2^minimum_account_to_track_power_of_two,
         2^(minimum_account_to_track_power_of_two + 1)) bytes.
         With the 8th bucket tracking accounts
         >= 128 * 2^minimum_account_to_track_power_of_two.
         The maximum value is 56, since we're using uint64_t for bytes counting,
         and that's the last value that would use the 8 buckets. In practice,
         we don't expect the proxy to be holding 2^56 bytes.
         If omitted, Envoy should not do any tracking.
         
        uint32 minimum_account_to_track_power_of_two = 1 [(.validate.rules) = { ... }
        Parameters:
        value - The minimumAccountToTrackPowerOfTwo to set.
        Returns:
        This builder for chaining.
      • clearMinimumAccountToTrackPowerOfTwo

        public BufferFactoryConfig.Builder clearMinimumAccountToTrackPowerOfTwo()
         The minimum power of two at which Envoy starts tracking an account.
         Envoy has 8 power of two buckets starting with the provided exponent below.
         Concretely the 1st bucket contains accounts for streams that use
         [2^minimum_account_to_track_power_of_two,
         2^(minimum_account_to_track_power_of_two + 1)) bytes.
         With the 8th bucket tracking accounts
         >= 128 * 2^minimum_account_to_track_power_of_two.
         The maximum value is 56, since we're using uint64_t for bytes counting,
         and that's the last value that would use the 8 buckets. In practice,
         we don't expect the proxy to be holding 2^56 bytes.
         If omitted, Envoy should not do any tracking.
         
        uint32 minimum_account_to_track_power_of_two = 1 [(.validate.rules) = { ... }
        Returns:
        This builder for chaining.
      • setUnknownFields

        public final BufferFactoryConfig.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        setUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<BufferFactoryConfig.Builder>
      • mergeUnknownFields

        public final BufferFactoryConfig.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        mergeUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<BufferFactoryConfig.Builder>