Interface ClusterShardingMessages.EntityStateOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
ClusterShardingMessages.EntityState
,ClusterShardingMessages.EntityState.Builder
- Enclosing class:
- ClusterShardingMessages
public static interface ClusterShardingMessages.EntityStateOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getEntities(int index)
repeated string entities = 1;
akka.protobufv3.internal.ByteString
getEntitiesBytes(int index)
repeated string entities = 1;
int
getEntitiesCount()
repeated string entities = 1;
java.util.List<java.lang.String>
getEntitiesList()
repeated string entities = 1;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntitiesList
java.util.List<java.lang.String> getEntitiesList()
repeated string entities = 1;
- Returns:
- A list containing the entities.
-
getEntitiesCount
int getEntitiesCount()
repeated string entities = 1;
- Returns:
- The count of entities.
-
getEntities
java.lang.String getEntities(int index)
repeated string entities = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The entities at the given index.
-
getEntitiesBytes
akka.protobufv3.internal.ByteString getEntitiesBytes(int index)
repeated string entities = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the entities at the given index.
-
-