Package akka.remote
Interface SystemMessageFormats.SuperviseDataOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
SystemMessageFormats.SuperviseData
,SystemMessageFormats.SuperviseData.Builder
- Enclosing class:
- SystemMessageFormats
public static interface SystemMessageFormats.SuperviseDataOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getAsync()
required bool async = 2;
ContainerFormats.ActorRef
getChild()
required .ActorRef child = 1;
ContainerFormats.ActorRefOrBuilder
getChildOrBuilder()
required .ActorRef child = 1;
boolean
hasAsync()
required bool async = 2;
boolean
hasChild()
required .ActorRef child = 1;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasChild
boolean hasChild()
required .ActorRef child = 1;
- Returns:
- Whether the child field is set.
-
getChild
ContainerFormats.ActorRef getChild()
required .ActorRef child = 1;
- Returns:
- The child.
-
getChildOrBuilder
ContainerFormats.ActorRefOrBuilder getChildOrBuilder()
required .ActorRef child = 1;
-
hasAsync
boolean hasAsync()
required bool async = 2;
- Returns:
- Whether the async field is set.
-
getAsync
boolean getAsync()
required bool async = 2;
- Returns:
- The async.
-
-