Package akka.cluster.protobuf.msg
Interface ClusterMessages.JoinOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
ClusterMessages.Join
,ClusterMessages.Join.Builder
- Enclosing class:
- ClusterMessages
public static interface ClusterMessages.JoinOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getAppVersion()
optional string appVersion = 3;
akka.protobufv3.internal.ByteString
getAppVersionBytes()
optional string appVersion = 3;
ClusterMessages.UniqueAddress
getNode()
required .UniqueAddress node = 1;
ClusterMessages.UniqueAddressOrBuilder
getNodeOrBuilder()
required .UniqueAddress node = 1;
java.lang.String
getRoles(int index)
repeated string roles = 2;
akka.protobufv3.internal.ByteString
getRolesBytes(int index)
repeated string roles = 2;
int
getRolesCount()
repeated string roles = 2;
java.util.List<java.lang.String>
getRolesList()
repeated string roles = 2;
boolean
hasAppVersion()
optional string appVersion = 3;
boolean
hasNode()
required .UniqueAddress node = 1;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasNode
boolean hasNode()
required .UniqueAddress node = 1;
- Returns:
- Whether the node field is set.
-
getNode
ClusterMessages.UniqueAddress getNode()
required .UniqueAddress node = 1;
- Returns:
- The node.
-
getNodeOrBuilder
ClusterMessages.UniqueAddressOrBuilder getNodeOrBuilder()
required .UniqueAddress node = 1;
-
getRolesList
java.util.List<java.lang.String> getRolesList()
repeated string roles = 2;
- Returns:
- A list containing the roles.
-
getRolesCount
int getRolesCount()
repeated string roles = 2;
- Returns:
- The count of roles.
-
getRoles
java.lang.String getRoles(int index)
repeated string roles = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The roles at the given index.
-
getRolesBytes
akka.protobufv3.internal.ByteString getRolesBytes(int index)
repeated string roles = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the roles at the given index.
-
hasAppVersion
boolean hasAppVersion()
optional string appVersion = 3;
- Returns:
- Whether the appVersion field is set.
-
getAppVersion
java.lang.String getAppVersion()
optional string appVersion = 3;
- Returns:
- The appVersion.
-
getAppVersionBytes
akka.protobufv3.internal.ByteString getAppVersionBytes()
optional string appVersion = 3;
- Returns:
- The bytes for appVersion.
-
-