Package akka.remote
Interface ContainerFormats.ActorIdentityOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
ContainerFormats.ActorIdentity
,ContainerFormats.ActorIdentity.Builder
- Enclosing class:
- ContainerFormats
public static interface ContainerFormats.ActorIdentityOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContainerFormats.Payload
getCorrelationId()
required .Payload correlationId = 1;
ContainerFormats.PayloadOrBuilder
getCorrelationIdOrBuilder()
required .Payload correlationId = 1;
ContainerFormats.ActorRef
getRef()
optional .ActorRef ref = 2;
ContainerFormats.ActorRefOrBuilder
getRefOrBuilder()
optional .ActorRef ref = 2;
boolean
hasCorrelationId()
required .Payload correlationId = 1;
boolean
hasRef()
optional .ActorRef ref = 2;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasCorrelationId
boolean hasCorrelationId()
required .Payload correlationId = 1;
- Returns:
- Whether the correlationId field is set.
-
getCorrelationId
ContainerFormats.Payload getCorrelationId()
required .Payload correlationId = 1;
- Returns:
- The correlationId.
-
getCorrelationIdOrBuilder
ContainerFormats.PayloadOrBuilder getCorrelationIdOrBuilder()
required .Payload correlationId = 1;
-
hasRef
boolean hasRef()
optional .ActorRef ref = 2;
- Returns:
- Whether the ref field is set.
-
getRef
ContainerFormats.ActorRef getRef()
optional .ActorRef ref = 2;
- Returns:
- The ref.
-
getRefOrBuilder
ContainerFormats.ActorRefOrBuilder getRefOrBuilder()
optional .ActorRef ref = 2;
-
-