Interface InternalListenerOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
InternalListener,InternalListener.Builder
public interface InternalListenerOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.UInt32ValuegetBufferSizeKb()The internal listener client connection buffer size in KiB.com.google.protobuf.UInt32ValueOrBuildergetBufferSizeKbOrBuilder()The internal listener client connection buffer size in KiB.booleanhasBufferSizeKb()The internal listener client connection buffer size in KiB.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasBufferSizeKb
boolean hasBufferSizeKb()
The internal listener client connection buffer size in KiB. For example, if ``buffer_size_kb`` is set to 5, then the actual buffer size is 5 KiB = 5 * 1024 bytes. If the ``buffer_size_kb`` is not specified, the buffer size is set to 1024 KiB.
.google.protobuf.UInt32Value buffer_size_kb = 1 [(.validate.rules) = { ... }- Returns:
- Whether the bufferSizeKb field is set.
-
getBufferSizeKb
com.google.protobuf.UInt32Value getBufferSizeKb()
The internal listener client connection buffer size in KiB. For example, if ``buffer_size_kb`` is set to 5, then the actual buffer size is 5 KiB = 5 * 1024 bytes. If the ``buffer_size_kb`` is not specified, the buffer size is set to 1024 KiB.
.google.protobuf.UInt32Value buffer_size_kb = 1 [(.validate.rules) = { ... }- Returns:
- The bufferSizeKb.
-
getBufferSizeKbOrBuilder
com.google.protobuf.UInt32ValueOrBuilder getBufferSizeKbOrBuilder()
The internal listener client connection buffer size in KiB. For example, if ``buffer_size_kb`` is set to 5, then the actual buffer size is 5 KiB = 5 * 1024 bytes. If the ``buffer_size_kb`` is not specified, the buffer size is set to 1024 KiB.
.google.protobuf.UInt32Value buffer_size_kb = 1 [(.validate.rules) = { ... }
-
-