Package akka.remote
Interface WireFormats.AkkaProtocolMessageOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
WireFormats.AkkaProtocolMessage
,WireFormats.AkkaProtocolMessage.Builder
- Enclosing class:
- WireFormats
public static interface WireFormats.AkkaProtocolMessageOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WireFormats.AkkaControlMessage
getInstruction()
optional .AkkaControlMessage instruction = 2;
WireFormats.AkkaControlMessageOrBuilder
getInstructionOrBuilder()
optional .AkkaControlMessage instruction = 2;
akka.protobufv3.internal.ByteString
getPayload()
optional bytes payload = 1;
boolean
hasInstruction()
optional .AkkaControlMessage instruction = 2;
boolean
hasPayload()
optional bytes payload = 1;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasPayload
boolean hasPayload()
optional bytes payload = 1;
- Returns:
- Whether the payload field is set.
-
getPayload
akka.protobufv3.internal.ByteString getPayload()
optional bytes payload = 1;
- Returns:
- The payload.
-
hasInstruction
boolean hasInstruction()
optional .AkkaControlMessage instruction = 2;
- Returns:
- Whether the instruction field is set.
-
getInstruction
WireFormats.AkkaControlMessage getInstruction()
optional .AkkaControlMessage instruction = 2;
- Returns:
- The instruction.
-
getInstructionOrBuilder
WireFormats.AkkaControlMessageOrBuilder getInstructionOrBuilder()
optional .AkkaControlMessage instruction = 2;
-
-