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