Package akka.remote
Interface ArteryControlFormats.CompressionTableAdvertisementOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
ArteryControlFormats.CompressionTableAdvertisement
,ArteryControlFormats.CompressionTableAdvertisement.Builder
- Enclosing class:
- ArteryControlFormats
public static interface ArteryControlFormats.CompressionTableAdvertisementOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ArteryControlFormats.UniqueAddress
getFrom()
required .UniqueAddress from = 1;
ArteryControlFormats.UniqueAddressOrBuilder
getFromOrBuilder()
required .UniqueAddress from = 1;
java.lang.String
getKeys(int index)
actual Map is represented by separate sequences of keys and values, relies on both sequences using the same order so that corresponding entries can be associated again when deserializingakka.protobufv3.internal.ByteString
getKeysBytes(int index)
actual Map is represented by separate sequences of keys and values, relies on both sequences using the same order so that corresponding entries can be associated again when deserializingint
getKeysCount()
actual Map is represented by separate sequences of keys and values, relies on both sequences using the same order so that corresponding entries can be associated again when deserializingjava.util.List<java.lang.String>
getKeysList()
actual Map is represented by separate sequences of keys and values, relies on both sequences using the same order so that corresponding entries can be associated again when deserializinglong
getOriginUid()
required uint64 originUid = 2;
int
getTableVersion()
required uint32 tableVersion = 3;
int
getValues(int index)
repeated uint32 values = 5;
int
getValuesCount()
repeated uint32 values = 5;
java.util.List<java.lang.Integer>
getValuesList()
repeated uint32 values = 5;
boolean
hasFrom()
required .UniqueAddress from = 1;
boolean
hasOriginUid()
required uint64 originUid = 2;
boolean
hasTableVersion()
required uint32 tableVersion = 3;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasFrom
boolean hasFrom()
required .UniqueAddress from = 1;
- Returns:
- Whether the from field is set.
-
getFrom
ArteryControlFormats.UniqueAddress getFrom()
required .UniqueAddress from = 1;
- Returns:
- The from.
-
getFromOrBuilder
ArteryControlFormats.UniqueAddressOrBuilder getFromOrBuilder()
required .UniqueAddress from = 1;
-
hasOriginUid
boolean hasOriginUid()
required uint64 originUid = 2;
- Returns:
- Whether the originUid field is set.
-
getOriginUid
long getOriginUid()
required uint64 originUid = 2;
- Returns:
- The originUid.
-
hasTableVersion
boolean hasTableVersion()
required uint32 tableVersion = 3;
- Returns:
- Whether the tableVersion field is set.
-
getTableVersion
int getTableVersion()
required uint32 tableVersion = 3;
- Returns:
- The tableVersion.
-
getKeysList
java.util.List<java.lang.String> getKeysList()
actual Map is represented by separate sequences of keys and values, relies on both sequences using the same order so that corresponding entries can be associated again when deserializing
repeated string keys = 4;
- Returns:
- A list containing the keys.
-
getKeysCount
int getKeysCount()
actual Map is represented by separate sequences of keys and values, relies on both sequences using the same order so that corresponding entries can be associated again when deserializing
repeated string keys = 4;
- Returns:
- The count of keys.
-
getKeys
java.lang.String getKeys(int index)
actual Map is represented by separate sequences of keys and values, relies on both sequences using the same order so that corresponding entries can be associated again when deserializing
repeated string keys = 4;
- Parameters:
index
- The index of the element to return.- Returns:
- The keys at the given index.
-
getKeysBytes
akka.protobufv3.internal.ByteString getKeysBytes(int index)
actual Map is represented by separate sequences of keys and values, relies on both sequences using the same order so that corresponding entries can be associated again when deserializing
repeated string keys = 4;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the keys at the given index.
-
getValuesList
java.util.List<java.lang.Integer> getValuesList()
repeated uint32 values = 5;
- Returns:
- A list containing the values.
-
getValuesCount
int getValuesCount()
repeated uint32 values = 5;
- Returns:
- The count of values.
-
getValues
int getValues(int index)
repeated uint32 values = 5;
- Parameters:
index
- The index of the element to return.- Returns:
- The values at the given index.
-
-