Package akka.remote
Interface ContainerFormats.ActorInitializationExceptionOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
ContainerFormats.ActorInitializationException
,ContainerFormats.ActorInitializationException.Builder
- Enclosing class:
- ContainerFormats
public static interface ContainerFormats.ActorInitializationExceptionOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContainerFormats.ActorRef
getActor()
optional .ActorRef actor = 1;
ContainerFormats.ActorRefOrBuilder
getActorOrBuilder()
optional .ActorRef actor = 1;
ContainerFormats.Payload
getCause()
required .Payload cause = 3;
ContainerFormats.PayloadOrBuilder
getCauseOrBuilder()
required .Payload cause = 3;
java.lang.String
getMessage()
required string message = 2;
akka.protobufv3.internal.ByteString
getMessageBytes()
required string message = 2;
boolean
hasActor()
optional .ActorRef actor = 1;
boolean
hasCause()
required .Payload cause = 3;
boolean
hasMessage()
required string message = 2;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasActor
boolean hasActor()
optional .ActorRef actor = 1;
- Returns:
- Whether the actor field is set.
-
getActor
ContainerFormats.ActorRef getActor()
optional .ActorRef actor = 1;
- Returns:
- The actor.
-
getActorOrBuilder
ContainerFormats.ActorRefOrBuilder getActorOrBuilder()
optional .ActorRef actor = 1;
-
hasMessage
boolean hasMessage()
required string message = 2;
- Returns:
- Whether the message field is set.
-
getMessage
java.lang.String getMessage()
required string message = 2;
- Returns:
- The message.
-
getMessageBytes
akka.protobufv3.internal.ByteString getMessageBytes()
required string message = 2;
- Returns:
- The bytes for message.
-
hasCause
boolean hasCause()
required .Payload cause = 3;
- Returns:
- Whether the cause field is set.
-
getCause
ContainerFormats.Payload getCause()
required .Payload cause = 3;
- Returns:
- The cause.
-
getCauseOrBuilder
ContainerFormats.PayloadOrBuilder getCauseOrBuilder()
required .Payload cause = 3;
-
-