Interface ReliableDelivery.SequencedMessageOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
ReliableDelivery.SequencedMessage
,ReliableDelivery.SequencedMessage.Builder
- Enclosing class:
- ReliableDelivery
public static interface ReliableDelivery.SequencedMessageOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getAck()
required bool ack = 4;
boolean
getFirst()
required bool first = 3;
boolean
getFirstChunk()
optional bool firstChunk = 7;
boolean
getLastChunk()
optional bool lastChunk = 8;
ContainerFormats.Payload
getMessage()
required .Payload message = 6;
ContainerFormats.PayloadOrBuilder
getMessageOrBuilder()
required .Payload message = 6;
java.lang.String
getProducerControllerRef()
required string producerControllerRef = 5;
akka.protobufv3.internal.ByteString
getProducerControllerRefBytes()
required string producerControllerRef = 5;
java.lang.String
getProducerId()
required string producerId = 1;
akka.protobufv3.internal.ByteString
getProducerIdBytes()
required string producerId = 1;
long
getSeqNr()
required int64 seqNr = 2;
boolean
hasAck()
required bool ack = 4;
boolean
hasFirst()
required bool first = 3;
boolean
hasFirstChunk()
optional bool firstChunk = 7;
boolean
hasLastChunk()
optional bool lastChunk = 8;
boolean
hasMessage()
required .Payload message = 6;
boolean
hasProducerControllerRef()
required string producerControllerRef = 5;
boolean
hasProducerId()
required string producerId = 1;
boolean
hasSeqNr()
required int64 seqNr = 2;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasProducerId
boolean hasProducerId()
required string producerId = 1;
- Returns:
- Whether the producerId field is set.
-
getProducerId
java.lang.String getProducerId()
required string producerId = 1;
- Returns:
- The producerId.
-
getProducerIdBytes
akka.protobufv3.internal.ByteString getProducerIdBytes()
required string producerId = 1;
- Returns:
- The bytes for producerId.
-
hasSeqNr
boolean hasSeqNr()
required int64 seqNr = 2;
- Returns:
- Whether the seqNr field is set.
-
getSeqNr
long getSeqNr()
required int64 seqNr = 2;
- Returns:
- The seqNr.
-
hasFirst
boolean hasFirst()
required bool first = 3;
- Returns:
- Whether the first field is set.
-
getFirst
boolean getFirst()
required bool first = 3;
- Returns:
- The first.
-
hasAck
boolean hasAck()
required bool ack = 4;
- Returns:
- Whether the ack field is set.
-
getAck
boolean getAck()
required bool ack = 4;
- Returns:
- The ack.
-
hasProducerControllerRef
boolean hasProducerControllerRef()
required string producerControllerRef = 5;
- Returns:
- Whether the producerControllerRef field is set.
-
getProducerControllerRef
java.lang.String getProducerControllerRef()
required string producerControllerRef = 5;
- Returns:
- The producerControllerRef.
-
getProducerControllerRefBytes
akka.protobufv3.internal.ByteString getProducerControllerRefBytes()
required string producerControllerRef = 5;
- Returns:
- The bytes for producerControllerRef.
-
hasMessage
boolean hasMessage()
required .Payload message = 6;
- Returns:
- Whether the message field is set.
-
getMessage
ContainerFormats.Payload getMessage()
required .Payload message = 6;
- Returns:
- The message.
-
getMessageOrBuilder
ContainerFormats.PayloadOrBuilder getMessageOrBuilder()
required .Payload message = 6;
-
hasFirstChunk
boolean hasFirstChunk()
optional bool firstChunk = 7;
- Returns:
- Whether the firstChunk field is set.
-
getFirstChunk
boolean getFirstChunk()
optional bool firstChunk = 7;
- Returns:
- The firstChunk.
-
hasLastChunk
boolean hasLastChunk()
optional bool lastChunk = 8;
- Returns:
- Whether the lastChunk field is set.
-
getLastChunk
boolean getLastChunk()
optional bool lastChunk = 8;
- Returns:
- The lastChunk.
-
-