- Protobuf serializer for Persistent message - Configurable serializer for Persistent message's payload - Configurable serializer for snapshots
3132 lines
106 KiB
Java
3132 lines
106 KiB
Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
// source: MessageFormats.proto
|
|
|
|
package akka.persistence.serialization;
|
|
|
|
public final class MessageFormats {
|
|
private MessageFormats() {}
|
|
public static void registerAllExtensions(
|
|
com.google.protobuf.ExtensionRegistry registry) {
|
|
}
|
|
public interface PersistentMessageOrBuilder
|
|
extends com.google.protobuf.MessageOrBuilder {
|
|
|
|
// optional .PersistentPayload payload = 1;
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
boolean hasPayload();
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
akka.persistence.serialization.MessageFormats.PersistentPayload getPayload();
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
akka.persistence.serialization.MessageFormats.PersistentPayloadOrBuilder getPayloadOrBuilder();
|
|
|
|
// optional int64 sequenceNr = 2;
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
boolean hasSequenceNr();
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
long getSequenceNr();
|
|
|
|
// optional string processorId = 3;
|
|
/**
|
|
* <code>optional string processorId = 3;</code>
|
|
*/
|
|
boolean hasProcessorId();
|
|
/**
|
|
* <code>optional string processorId = 3;</code>
|
|
*/
|
|
java.lang.String getProcessorId();
|
|
/**
|
|
* <code>optional string processorId = 3;</code>
|
|
*/
|
|
com.google.protobuf.ByteString
|
|
getProcessorIdBytes();
|
|
|
|
// optional string channelId = 4;
|
|
/**
|
|
* <code>optional string channelId = 4;</code>
|
|
*/
|
|
boolean hasChannelId();
|
|
/**
|
|
* <code>optional string channelId = 4;</code>
|
|
*/
|
|
java.lang.String getChannelId();
|
|
/**
|
|
* <code>optional string channelId = 4;</code>
|
|
*/
|
|
com.google.protobuf.ByteString
|
|
getChannelIdBytes();
|
|
|
|
// optional bool deleted = 5;
|
|
/**
|
|
* <code>optional bool deleted = 5;</code>
|
|
*/
|
|
boolean hasDeleted();
|
|
/**
|
|
* <code>optional bool deleted = 5;</code>
|
|
*/
|
|
boolean getDeleted();
|
|
|
|
// optional bool resolved = 6;
|
|
/**
|
|
* <code>optional bool resolved = 6;</code>
|
|
*/
|
|
boolean hasResolved();
|
|
/**
|
|
* <code>optional bool resolved = 6;</code>
|
|
*/
|
|
boolean getResolved();
|
|
|
|
// repeated string confirms = 8;
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
java.util.List<java.lang.String>
|
|
getConfirmsList();
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
int getConfirmsCount();
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
java.lang.String getConfirms(int index);
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
com.google.protobuf.ByteString
|
|
getConfirmsBytes(int index);
|
|
|
|
// optional .ConfirmMessage confirmMessage = 10;
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
boolean hasConfirmMessage();
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
akka.persistence.serialization.MessageFormats.ConfirmMessage getConfirmMessage();
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
akka.persistence.serialization.MessageFormats.ConfirmMessageOrBuilder getConfirmMessageOrBuilder();
|
|
|
|
// optional string confirmTarget = 9;
|
|
/**
|
|
* <code>optional string confirmTarget = 9;</code>
|
|
*/
|
|
boolean hasConfirmTarget();
|
|
/**
|
|
* <code>optional string confirmTarget = 9;</code>
|
|
*/
|
|
java.lang.String getConfirmTarget();
|
|
/**
|
|
* <code>optional string confirmTarget = 9;</code>
|
|
*/
|
|
com.google.protobuf.ByteString
|
|
getConfirmTargetBytes();
|
|
|
|
// optional string sender = 7;
|
|
/**
|
|
* <code>optional string sender = 7;</code>
|
|
*/
|
|
boolean hasSender();
|
|
/**
|
|
* <code>optional string sender = 7;</code>
|
|
*/
|
|
java.lang.String getSender();
|
|
/**
|
|
* <code>optional string sender = 7;</code>
|
|
*/
|
|
com.google.protobuf.ByteString
|
|
getSenderBytes();
|
|
}
|
|
/**
|
|
* Protobuf type {@code PersistentMessage}
|
|
*/
|
|
public static final class PersistentMessage extends
|
|
com.google.protobuf.GeneratedMessage
|
|
implements PersistentMessageOrBuilder {
|
|
// Use PersistentMessage.newBuilder() to construct.
|
|
private PersistentMessage(com.google.protobuf.GeneratedMessage.Builder<?> builder) {
|
|
super(builder);
|
|
this.unknownFields = builder.getUnknownFields();
|
|
}
|
|
private PersistentMessage(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
|
|
|
|
private static final PersistentMessage defaultInstance;
|
|
public static PersistentMessage getDefaultInstance() {
|
|
return defaultInstance;
|
|
}
|
|
|
|
public PersistentMessage getDefaultInstanceForType() {
|
|
return defaultInstance;
|
|
}
|
|
|
|
private final com.google.protobuf.UnknownFieldSet unknownFields;
|
|
@java.lang.Override
|
|
public final com.google.protobuf.UnknownFieldSet
|
|
getUnknownFields() {
|
|
return this.unknownFields;
|
|
}
|
|
private PersistentMessage(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
initFields();
|
|
int mutable_bitField0_ = 0;
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
com.google.protobuf.UnknownFieldSet.newBuilder();
|
|
try {
|
|
boolean done = false;
|
|
while (!done) {
|
|
int tag = input.readTag();
|
|
switch (tag) {
|
|
case 0:
|
|
done = true;
|
|
break;
|
|
default: {
|
|
if (!parseUnknownField(input, unknownFields,
|
|
extensionRegistry, tag)) {
|
|
done = true;
|
|
}
|
|
break;
|
|
}
|
|
case 10: {
|
|
akka.persistence.serialization.MessageFormats.PersistentPayload.Builder subBuilder = null;
|
|
if (((bitField0_ & 0x00000001) == 0x00000001)) {
|
|
subBuilder = payload_.toBuilder();
|
|
}
|
|
payload_ = input.readMessage(akka.persistence.serialization.MessageFormats.PersistentPayload.PARSER, extensionRegistry);
|
|
if (subBuilder != null) {
|
|
subBuilder.mergeFrom(payload_);
|
|
payload_ = subBuilder.buildPartial();
|
|
}
|
|
bitField0_ |= 0x00000001;
|
|
break;
|
|
}
|
|
case 16: {
|
|
bitField0_ |= 0x00000002;
|
|
sequenceNr_ = input.readInt64();
|
|
break;
|
|
}
|
|
case 26: {
|
|
bitField0_ |= 0x00000004;
|
|
processorId_ = input.readBytes();
|
|
break;
|
|
}
|
|
case 34: {
|
|
bitField0_ |= 0x00000008;
|
|
channelId_ = input.readBytes();
|
|
break;
|
|
}
|
|
case 40: {
|
|
bitField0_ |= 0x00000010;
|
|
deleted_ = input.readBool();
|
|
break;
|
|
}
|
|
case 48: {
|
|
bitField0_ |= 0x00000020;
|
|
resolved_ = input.readBool();
|
|
break;
|
|
}
|
|
case 58: {
|
|
bitField0_ |= 0x00000100;
|
|
sender_ = input.readBytes();
|
|
break;
|
|
}
|
|
case 66: {
|
|
if (!((mutable_bitField0_ & 0x00000040) == 0x00000040)) {
|
|
confirms_ = new com.google.protobuf.LazyStringArrayList();
|
|
mutable_bitField0_ |= 0x00000040;
|
|
}
|
|
confirms_.add(input.readBytes());
|
|
break;
|
|
}
|
|
case 74: {
|
|
bitField0_ |= 0x00000080;
|
|
confirmTarget_ = input.readBytes();
|
|
break;
|
|
}
|
|
case 82: {
|
|
akka.persistence.serialization.MessageFormats.ConfirmMessage.Builder subBuilder = null;
|
|
if (((bitField0_ & 0x00000040) == 0x00000040)) {
|
|
subBuilder = confirmMessage_.toBuilder();
|
|
}
|
|
confirmMessage_ = input.readMessage(akka.persistence.serialization.MessageFormats.ConfirmMessage.PARSER, extensionRegistry);
|
|
if (subBuilder != null) {
|
|
subBuilder.mergeFrom(confirmMessage_);
|
|
confirmMessage_ = subBuilder.buildPartial();
|
|
}
|
|
bitField0_ |= 0x00000040;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
throw e.setUnfinishedMessage(this);
|
|
} catch (java.io.IOException e) {
|
|
throw new com.google.protobuf.InvalidProtocolBufferException(
|
|
e.getMessage()).setUnfinishedMessage(this);
|
|
} finally {
|
|
if (((mutable_bitField0_ & 0x00000040) == 0x00000040)) {
|
|
confirms_ = new com.google.protobuf.UnmodifiableLazyStringList(confirms_);
|
|
}
|
|
this.unknownFields = unknownFields.build();
|
|
makeExtensionsImmutable();
|
|
}
|
|
}
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_PersistentMessage_descriptor;
|
|
}
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_PersistentMessage_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
akka.persistence.serialization.MessageFormats.PersistentMessage.class, akka.persistence.serialization.MessageFormats.PersistentMessage.Builder.class);
|
|
}
|
|
|
|
public static com.google.protobuf.Parser<PersistentMessage> PARSER =
|
|
new com.google.protobuf.AbstractParser<PersistentMessage>() {
|
|
public PersistentMessage parsePartialFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return new PersistentMessage(input, extensionRegistry);
|
|
}
|
|
};
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Parser<PersistentMessage> getParserForType() {
|
|
return PARSER;
|
|
}
|
|
|
|
private int bitField0_;
|
|
// optional .PersistentPayload payload = 1;
|
|
public static final int PAYLOAD_FIELD_NUMBER = 1;
|
|
private akka.persistence.serialization.MessageFormats.PersistentPayload payload_;
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
public boolean hasPayload() {
|
|
return ((bitField0_ & 0x00000001) == 0x00000001);
|
|
}
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
public akka.persistence.serialization.MessageFormats.PersistentPayload getPayload() {
|
|
return payload_;
|
|
}
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
public akka.persistence.serialization.MessageFormats.PersistentPayloadOrBuilder getPayloadOrBuilder() {
|
|
return payload_;
|
|
}
|
|
|
|
// optional int64 sequenceNr = 2;
|
|
public static final int SEQUENCENR_FIELD_NUMBER = 2;
|
|
private long sequenceNr_;
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
public boolean hasSequenceNr() {
|
|
return ((bitField0_ & 0x00000002) == 0x00000002);
|
|
}
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
public long getSequenceNr() {
|
|
return sequenceNr_;
|
|
}
|
|
|
|
// optional string processorId = 3;
|
|
public static final int PROCESSORID_FIELD_NUMBER = 3;
|
|
private java.lang.Object processorId_;
|
|
/**
|
|
* <code>optional string processorId = 3;</code>
|
|
*/
|
|
public boolean hasProcessorId() {
|
|
return ((bitField0_ & 0x00000004) == 0x00000004);
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 3;</code>
|
|
*/
|
|
public java.lang.String getProcessorId() {
|
|
java.lang.Object ref = processorId_;
|
|
if (ref instanceof java.lang.String) {
|
|
return (java.lang.String) ref;
|
|
} else {
|
|
com.google.protobuf.ByteString bs =
|
|
(com.google.protobuf.ByteString) ref;
|
|
java.lang.String s = bs.toStringUtf8();
|
|
if (bs.isValidUtf8()) {
|
|
processorId_ = s;
|
|
}
|
|
return s;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 3;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getProcessorIdBytes() {
|
|
java.lang.Object ref = processorId_;
|
|
if (ref instanceof java.lang.String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
processorId_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
|
|
// optional string channelId = 4;
|
|
public static final int CHANNELID_FIELD_NUMBER = 4;
|
|
private java.lang.Object channelId_;
|
|
/**
|
|
* <code>optional string channelId = 4;</code>
|
|
*/
|
|
public boolean hasChannelId() {
|
|
return ((bitField0_ & 0x00000008) == 0x00000008);
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 4;</code>
|
|
*/
|
|
public java.lang.String getChannelId() {
|
|
java.lang.Object ref = channelId_;
|
|
if (ref instanceof java.lang.String) {
|
|
return (java.lang.String) ref;
|
|
} else {
|
|
com.google.protobuf.ByteString bs =
|
|
(com.google.protobuf.ByteString) ref;
|
|
java.lang.String s = bs.toStringUtf8();
|
|
if (bs.isValidUtf8()) {
|
|
channelId_ = s;
|
|
}
|
|
return s;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 4;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getChannelIdBytes() {
|
|
java.lang.Object ref = channelId_;
|
|
if (ref instanceof java.lang.String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
channelId_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
|
|
// optional bool deleted = 5;
|
|
public static final int DELETED_FIELD_NUMBER = 5;
|
|
private boolean deleted_;
|
|
/**
|
|
* <code>optional bool deleted = 5;</code>
|
|
*/
|
|
public boolean hasDeleted() {
|
|
return ((bitField0_ & 0x00000010) == 0x00000010);
|
|
}
|
|
/**
|
|
* <code>optional bool deleted = 5;</code>
|
|
*/
|
|
public boolean getDeleted() {
|
|
return deleted_;
|
|
}
|
|
|
|
// optional bool resolved = 6;
|
|
public static final int RESOLVED_FIELD_NUMBER = 6;
|
|
private boolean resolved_;
|
|
/**
|
|
* <code>optional bool resolved = 6;</code>
|
|
*/
|
|
public boolean hasResolved() {
|
|
return ((bitField0_ & 0x00000020) == 0x00000020);
|
|
}
|
|
/**
|
|
* <code>optional bool resolved = 6;</code>
|
|
*/
|
|
public boolean getResolved() {
|
|
return resolved_;
|
|
}
|
|
|
|
// repeated string confirms = 8;
|
|
public static final int CONFIRMS_FIELD_NUMBER = 8;
|
|
private com.google.protobuf.LazyStringList confirms_;
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
public java.util.List<java.lang.String>
|
|
getConfirmsList() {
|
|
return confirms_;
|
|
}
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
public int getConfirmsCount() {
|
|
return confirms_.size();
|
|
}
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
public java.lang.String getConfirms(int index) {
|
|
return confirms_.get(index);
|
|
}
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getConfirmsBytes(int index) {
|
|
return confirms_.getByteString(index);
|
|
}
|
|
|
|
// optional .ConfirmMessage confirmMessage = 10;
|
|
public static final int CONFIRMMESSAGE_FIELD_NUMBER = 10;
|
|
private akka.persistence.serialization.MessageFormats.ConfirmMessage confirmMessage_;
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
public boolean hasConfirmMessage() {
|
|
return ((bitField0_ & 0x00000040) == 0x00000040);
|
|
}
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
public akka.persistence.serialization.MessageFormats.ConfirmMessage getConfirmMessage() {
|
|
return confirmMessage_;
|
|
}
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
public akka.persistence.serialization.MessageFormats.ConfirmMessageOrBuilder getConfirmMessageOrBuilder() {
|
|
return confirmMessage_;
|
|
}
|
|
|
|
// optional string confirmTarget = 9;
|
|
public static final int CONFIRMTARGET_FIELD_NUMBER = 9;
|
|
private java.lang.Object confirmTarget_;
|
|
/**
|
|
* <code>optional string confirmTarget = 9;</code>
|
|
*/
|
|
public boolean hasConfirmTarget() {
|
|
return ((bitField0_ & 0x00000080) == 0x00000080);
|
|
}
|
|
/**
|
|
* <code>optional string confirmTarget = 9;</code>
|
|
*/
|
|
public java.lang.String getConfirmTarget() {
|
|
java.lang.Object ref = confirmTarget_;
|
|
if (ref instanceof java.lang.String) {
|
|
return (java.lang.String) ref;
|
|
} else {
|
|
com.google.protobuf.ByteString bs =
|
|
(com.google.protobuf.ByteString) ref;
|
|
java.lang.String s = bs.toStringUtf8();
|
|
if (bs.isValidUtf8()) {
|
|
confirmTarget_ = s;
|
|
}
|
|
return s;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string confirmTarget = 9;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getConfirmTargetBytes() {
|
|
java.lang.Object ref = confirmTarget_;
|
|
if (ref instanceof java.lang.String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
confirmTarget_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
|
|
// optional string sender = 7;
|
|
public static final int SENDER_FIELD_NUMBER = 7;
|
|
private java.lang.Object sender_;
|
|
/**
|
|
* <code>optional string sender = 7;</code>
|
|
*/
|
|
public boolean hasSender() {
|
|
return ((bitField0_ & 0x00000100) == 0x00000100);
|
|
}
|
|
/**
|
|
* <code>optional string sender = 7;</code>
|
|
*/
|
|
public java.lang.String getSender() {
|
|
java.lang.Object ref = sender_;
|
|
if (ref instanceof java.lang.String) {
|
|
return (java.lang.String) ref;
|
|
} else {
|
|
com.google.protobuf.ByteString bs =
|
|
(com.google.protobuf.ByteString) ref;
|
|
java.lang.String s = bs.toStringUtf8();
|
|
if (bs.isValidUtf8()) {
|
|
sender_ = s;
|
|
}
|
|
return s;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string sender = 7;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getSenderBytes() {
|
|
java.lang.Object ref = sender_;
|
|
if (ref instanceof java.lang.String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
sender_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
|
|
private void initFields() {
|
|
payload_ = akka.persistence.serialization.MessageFormats.PersistentPayload.getDefaultInstance();
|
|
sequenceNr_ = 0L;
|
|
processorId_ = "";
|
|
channelId_ = "";
|
|
deleted_ = false;
|
|
resolved_ = false;
|
|
confirms_ = com.google.protobuf.LazyStringArrayList.EMPTY;
|
|
confirmMessage_ = akka.persistence.serialization.MessageFormats.ConfirmMessage.getDefaultInstance();
|
|
confirmTarget_ = "";
|
|
sender_ = "";
|
|
}
|
|
private byte memoizedIsInitialized = -1;
|
|
public final boolean isInitialized() {
|
|
byte isInitialized = memoizedIsInitialized;
|
|
if (isInitialized != -1) return isInitialized == 1;
|
|
|
|
if (hasPayload()) {
|
|
if (!getPayload().isInitialized()) {
|
|
memoizedIsInitialized = 0;
|
|
return false;
|
|
}
|
|
}
|
|
memoizedIsInitialized = 1;
|
|
return true;
|
|
}
|
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
throws java.io.IOException {
|
|
getSerializedSize();
|
|
if (((bitField0_ & 0x00000001) == 0x00000001)) {
|
|
output.writeMessage(1, payload_);
|
|
}
|
|
if (((bitField0_ & 0x00000002) == 0x00000002)) {
|
|
output.writeInt64(2, sequenceNr_);
|
|
}
|
|
if (((bitField0_ & 0x00000004) == 0x00000004)) {
|
|
output.writeBytes(3, getProcessorIdBytes());
|
|
}
|
|
if (((bitField0_ & 0x00000008) == 0x00000008)) {
|
|
output.writeBytes(4, getChannelIdBytes());
|
|
}
|
|
if (((bitField0_ & 0x00000010) == 0x00000010)) {
|
|
output.writeBool(5, deleted_);
|
|
}
|
|
if (((bitField0_ & 0x00000020) == 0x00000020)) {
|
|
output.writeBool(6, resolved_);
|
|
}
|
|
if (((bitField0_ & 0x00000100) == 0x00000100)) {
|
|
output.writeBytes(7, getSenderBytes());
|
|
}
|
|
for (int i = 0; i < confirms_.size(); i++) {
|
|
output.writeBytes(8, confirms_.getByteString(i));
|
|
}
|
|
if (((bitField0_ & 0x00000080) == 0x00000080)) {
|
|
output.writeBytes(9, getConfirmTargetBytes());
|
|
}
|
|
if (((bitField0_ & 0x00000040) == 0x00000040)) {
|
|
output.writeMessage(10, confirmMessage_);
|
|
}
|
|
getUnknownFields().writeTo(output);
|
|
}
|
|
|
|
private int memoizedSerializedSize = -1;
|
|
public int getSerializedSize() {
|
|
int size = memoizedSerializedSize;
|
|
if (size != -1) return size;
|
|
|
|
size = 0;
|
|
if (((bitField0_ & 0x00000001) == 0x00000001)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeMessageSize(1, payload_);
|
|
}
|
|
if (((bitField0_ & 0x00000002) == 0x00000002)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeInt64Size(2, sequenceNr_);
|
|
}
|
|
if (((bitField0_ & 0x00000004) == 0x00000004)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBytesSize(3, getProcessorIdBytes());
|
|
}
|
|
if (((bitField0_ & 0x00000008) == 0x00000008)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBytesSize(4, getChannelIdBytes());
|
|
}
|
|
if (((bitField0_ & 0x00000010) == 0x00000010)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBoolSize(5, deleted_);
|
|
}
|
|
if (((bitField0_ & 0x00000020) == 0x00000020)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBoolSize(6, resolved_);
|
|
}
|
|
if (((bitField0_ & 0x00000100) == 0x00000100)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBytesSize(7, getSenderBytes());
|
|
}
|
|
{
|
|
int dataSize = 0;
|
|
for (int i = 0; i < confirms_.size(); i++) {
|
|
dataSize += com.google.protobuf.CodedOutputStream
|
|
.computeBytesSizeNoTag(confirms_.getByteString(i));
|
|
}
|
|
size += dataSize;
|
|
size += 1 * getConfirmsList().size();
|
|
}
|
|
if (((bitField0_ & 0x00000080) == 0x00000080)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBytesSize(9, getConfirmTargetBytes());
|
|
}
|
|
if (((bitField0_ & 0x00000040) == 0x00000040)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeMessageSize(10, confirmMessage_);
|
|
}
|
|
size += getUnknownFields().getSerializedSize();
|
|
memoizedSerializedSize = size;
|
|
return size;
|
|
}
|
|
|
|
private static final long serialVersionUID = 0L;
|
|
@java.lang.Override
|
|
protected java.lang.Object writeReplace()
|
|
throws java.io.ObjectStreamException {
|
|
return super.writeReplace();
|
|
}
|
|
|
|
public static akka.persistence.serialization.MessageFormats.PersistentMessage parseFrom(
|
|
com.google.protobuf.ByteString data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentMessage parseFrom(
|
|
com.google.protobuf.ByteString data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentMessage parseFrom(byte[] data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentMessage parseFrom(
|
|
byte[] data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentMessage parseFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return PARSER.parseFrom(input);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentMessage parseFrom(
|
|
java.io.InputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return PARSER.parseFrom(input, extensionRegistry);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentMessage parseDelimitedFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return PARSER.parseDelimitedFrom(input);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentMessage parseDelimitedFrom(
|
|
java.io.InputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return PARSER.parseDelimitedFrom(input, extensionRegistry);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentMessage parseFrom(
|
|
com.google.protobuf.CodedInputStream input)
|
|
throws java.io.IOException {
|
|
return PARSER.parseFrom(input);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentMessage parseFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return PARSER.parseFrom(input, extensionRegistry);
|
|
}
|
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
|
public static Builder newBuilder(akka.persistence.serialization.MessageFormats.PersistentMessage prototype) {
|
|
return newBuilder().mergeFrom(prototype);
|
|
}
|
|
public Builder toBuilder() { return newBuilder(this); }
|
|
|
|
@java.lang.Override
|
|
protected Builder newBuilderForType(
|
|
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
|
|
Builder builder = new Builder(parent);
|
|
return builder;
|
|
}
|
|
/**
|
|
* Protobuf type {@code PersistentMessage}
|
|
*/
|
|
public static final class Builder extends
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder>
|
|
implements akka.persistence.serialization.MessageFormats.PersistentMessageOrBuilder {
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_PersistentMessage_descriptor;
|
|
}
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_PersistentMessage_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
akka.persistence.serialization.MessageFormats.PersistentMessage.class, akka.persistence.serialization.MessageFormats.PersistentMessage.Builder.class);
|
|
}
|
|
|
|
// Construct using akka.persistence.serialization.MessageFormats.PersistentMessage.newBuilder()
|
|
private Builder() {
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
|
|
private Builder(
|
|
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
|
|
super(parent);
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
private void maybeForceBuilderInitialization() {
|
|
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
|
|
getPayloadFieldBuilder();
|
|
getConfirmMessageFieldBuilder();
|
|
}
|
|
}
|
|
private static Builder create() {
|
|
return new Builder();
|
|
}
|
|
|
|
public Builder clear() {
|
|
super.clear();
|
|
if (payloadBuilder_ == null) {
|
|
payload_ = akka.persistence.serialization.MessageFormats.PersistentPayload.getDefaultInstance();
|
|
} else {
|
|
payloadBuilder_.clear();
|
|
}
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
sequenceNr_ = 0L;
|
|
bitField0_ = (bitField0_ & ~0x00000002);
|
|
processorId_ = "";
|
|
bitField0_ = (bitField0_ & ~0x00000004);
|
|
channelId_ = "";
|
|
bitField0_ = (bitField0_ & ~0x00000008);
|
|
deleted_ = false;
|
|
bitField0_ = (bitField0_ & ~0x00000010);
|
|
resolved_ = false;
|
|
bitField0_ = (bitField0_ & ~0x00000020);
|
|
confirms_ = com.google.protobuf.LazyStringArrayList.EMPTY;
|
|
bitField0_ = (bitField0_ & ~0x00000040);
|
|
if (confirmMessageBuilder_ == null) {
|
|
confirmMessage_ = akka.persistence.serialization.MessageFormats.ConfirmMessage.getDefaultInstance();
|
|
} else {
|
|
confirmMessageBuilder_.clear();
|
|
}
|
|
bitField0_ = (bitField0_ & ~0x00000080);
|
|
confirmTarget_ = "";
|
|
bitField0_ = (bitField0_ & ~0x00000100);
|
|
sender_ = "";
|
|
bitField0_ = (bitField0_ & ~0x00000200);
|
|
return this;
|
|
}
|
|
|
|
public Builder clone() {
|
|
return create().mergeFrom(buildPartial());
|
|
}
|
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptorForType() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_PersistentMessage_descriptor;
|
|
}
|
|
|
|
public akka.persistence.serialization.MessageFormats.PersistentMessage getDefaultInstanceForType() {
|
|
return akka.persistence.serialization.MessageFormats.PersistentMessage.getDefaultInstance();
|
|
}
|
|
|
|
public akka.persistence.serialization.MessageFormats.PersistentMessage build() {
|
|
akka.persistence.serialization.MessageFormats.PersistentMessage result = buildPartial();
|
|
if (!result.isInitialized()) {
|
|
throw newUninitializedMessageException(result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
public akka.persistence.serialization.MessageFormats.PersistentMessage buildPartial() {
|
|
akka.persistence.serialization.MessageFormats.PersistentMessage result = new akka.persistence.serialization.MessageFormats.PersistentMessage(this);
|
|
int from_bitField0_ = bitField0_;
|
|
int to_bitField0_ = 0;
|
|
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
|
|
to_bitField0_ |= 0x00000001;
|
|
}
|
|
if (payloadBuilder_ == null) {
|
|
result.payload_ = payload_;
|
|
} else {
|
|
result.payload_ = payloadBuilder_.build();
|
|
}
|
|
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
|
|
to_bitField0_ |= 0x00000002;
|
|
}
|
|
result.sequenceNr_ = sequenceNr_;
|
|
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
|
|
to_bitField0_ |= 0x00000004;
|
|
}
|
|
result.processorId_ = processorId_;
|
|
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
|
|
to_bitField0_ |= 0x00000008;
|
|
}
|
|
result.channelId_ = channelId_;
|
|
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
|
|
to_bitField0_ |= 0x00000010;
|
|
}
|
|
result.deleted_ = deleted_;
|
|
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
|
|
to_bitField0_ |= 0x00000020;
|
|
}
|
|
result.resolved_ = resolved_;
|
|
if (((bitField0_ & 0x00000040) == 0x00000040)) {
|
|
confirms_ = new com.google.protobuf.UnmodifiableLazyStringList(
|
|
confirms_);
|
|
bitField0_ = (bitField0_ & ~0x00000040);
|
|
}
|
|
result.confirms_ = confirms_;
|
|
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
|
|
to_bitField0_ |= 0x00000040;
|
|
}
|
|
if (confirmMessageBuilder_ == null) {
|
|
result.confirmMessage_ = confirmMessage_;
|
|
} else {
|
|
result.confirmMessage_ = confirmMessageBuilder_.build();
|
|
}
|
|
if (((from_bitField0_ & 0x00000100) == 0x00000100)) {
|
|
to_bitField0_ |= 0x00000080;
|
|
}
|
|
result.confirmTarget_ = confirmTarget_;
|
|
if (((from_bitField0_ & 0x00000200) == 0x00000200)) {
|
|
to_bitField0_ |= 0x00000100;
|
|
}
|
|
result.sender_ = sender_;
|
|
result.bitField0_ = to_bitField0_;
|
|
onBuilt();
|
|
return result;
|
|
}
|
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
|
if (other instanceof akka.persistence.serialization.MessageFormats.PersistentMessage) {
|
|
return mergeFrom((akka.persistence.serialization.MessageFormats.PersistentMessage)other);
|
|
} else {
|
|
super.mergeFrom(other);
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public Builder mergeFrom(akka.persistence.serialization.MessageFormats.PersistentMessage other) {
|
|
if (other == akka.persistence.serialization.MessageFormats.PersistentMessage.getDefaultInstance()) return this;
|
|
if (other.hasPayload()) {
|
|
mergePayload(other.getPayload());
|
|
}
|
|
if (other.hasSequenceNr()) {
|
|
setSequenceNr(other.getSequenceNr());
|
|
}
|
|
if (other.hasProcessorId()) {
|
|
bitField0_ |= 0x00000004;
|
|
processorId_ = other.processorId_;
|
|
onChanged();
|
|
}
|
|
if (other.hasChannelId()) {
|
|
bitField0_ |= 0x00000008;
|
|
channelId_ = other.channelId_;
|
|
onChanged();
|
|
}
|
|
if (other.hasDeleted()) {
|
|
setDeleted(other.getDeleted());
|
|
}
|
|
if (other.hasResolved()) {
|
|
setResolved(other.getResolved());
|
|
}
|
|
if (!other.confirms_.isEmpty()) {
|
|
if (confirms_.isEmpty()) {
|
|
confirms_ = other.confirms_;
|
|
bitField0_ = (bitField0_ & ~0x00000040);
|
|
} else {
|
|
ensureConfirmsIsMutable();
|
|
confirms_.addAll(other.confirms_);
|
|
}
|
|
onChanged();
|
|
}
|
|
if (other.hasConfirmMessage()) {
|
|
mergeConfirmMessage(other.getConfirmMessage());
|
|
}
|
|
if (other.hasConfirmTarget()) {
|
|
bitField0_ |= 0x00000100;
|
|
confirmTarget_ = other.confirmTarget_;
|
|
onChanged();
|
|
}
|
|
if (other.hasSender()) {
|
|
bitField0_ |= 0x00000200;
|
|
sender_ = other.sender_;
|
|
onChanged();
|
|
}
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
return this;
|
|
}
|
|
|
|
public final boolean isInitialized() {
|
|
if (hasPayload()) {
|
|
if (!getPayload().isInitialized()) {
|
|
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
public Builder mergeFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
akka.persistence.serialization.MessageFormats.PersistentMessage parsedMessage = null;
|
|
try {
|
|
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
parsedMessage = (akka.persistence.serialization.MessageFormats.PersistentMessage) e.getUnfinishedMessage();
|
|
throw e;
|
|
} finally {
|
|
if (parsedMessage != null) {
|
|
mergeFrom(parsedMessage);
|
|
}
|
|
}
|
|
return this;
|
|
}
|
|
private int bitField0_;
|
|
|
|
// optional .PersistentPayload payload = 1;
|
|
private akka.persistence.serialization.MessageFormats.PersistentPayload payload_ = akka.persistence.serialization.MessageFormats.PersistentPayload.getDefaultInstance();
|
|
private com.google.protobuf.SingleFieldBuilder<
|
|
akka.persistence.serialization.MessageFormats.PersistentPayload, akka.persistence.serialization.MessageFormats.PersistentPayload.Builder, akka.persistence.serialization.MessageFormats.PersistentPayloadOrBuilder> payloadBuilder_;
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
public boolean hasPayload() {
|
|
return ((bitField0_ & 0x00000001) == 0x00000001);
|
|
}
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
public akka.persistence.serialization.MessageFormats.PersistentPayload getPayload() {
|
|
if (payloadBuilder_ == null) {
|
|
return payload_;
|
|
} else {
|
|
return payloadBuilder_.getMessage();
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
public Builder setPayload(akka.persistence.serialization.MessageFormats.PersistentPayload value) {
|
|
if (payloadBuilder_ == null) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
payload_ = value;
|
|
onChanged();
|
|
} else {
|
|
payloadBuilder_.setMessage(value);
|
|
}
|
|
bitField0_ |= 0x00000001;
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
public Builder setPayload(
|
|
akka.persistence.serialization.MessageFormats.PersistentPayload.Builder builderForValue) {
|
|
if (payloadBuilder_ == null) {
|
|
payload_ = builderForValue.build();
|
|
onChanged();
|
|
} else {
|
|
payloadBuilder_.setMessage(builderForValue.build());
|
|
}
|
|
bitField0_ |= 0x00000001;
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
public Builder mergePayload(akka.persistence.serialization.MessageFormats.PersistentPayload value) {
|
|
if (payloadBuilder_ == null) {
|
|
if (((bitField0_ & 0x00000001) == 0x00000001) &&
|
|
payload_ != akka.persistence.serialization.MessageFormats.PersistentPayload.getDefaultInstance()) {
|
|
payload_ =
|
|
akka.persistence.serialization.MessageFormats.PersistentPayload.newBuilder(payload_).mergeFrom(value).buildPartial();
|
|
} else {
|
|
payload_ = value;
|
|
}
|
|
onChanged();
|
|
} else {
|
|
payloadBuilder_.mergeFrom(value);
|
|
}
|
|
bitField0_ |= 0x00000001;
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
public Builder clearPayload() {
|
|
if (payloadBuilder_ == null) {
|
|
payload_ = akka.persistence.serialization.MessageFormats.PersistentPayload.getDefaultInstance();
|
|
onChanged();
|
|
} else {
|
|
payloadBuilder_.clear();
|
|
}
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
public akka.persistence.serialization.MessageFormats.PersistentPayload.Builder getPayloadBuilder() {
|
|
bitField0_ |= 0x00000001;
|
|
onChanged();
|
|
return getPayloadFieldBuilder().getBuilder();
|
|
}
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
public akka.persistence.serialization.MessageFormats.PersistentPayloadOrBuilder getPayloadOrBuilder() {
|
|
if (payloadBuilder_ != null) {
|
|
return payloadBuilder_.getMessageOrBuilder();
|
|
} else {
|
|
return payload_;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional .PersistentPayload payload = 1;</code>
|
|
*/
|
|
private com.google.protobuf.SingleFieldBuilder<
|
|
akka.persistence.serialization.MessageFormats.PersistentPayload, akka.persistence.serialization.MessageFormats.PersistentPayload.Builder, akka.persistence.serialization.MessageFormats.PersistentPayloadOrBuilder>
|
|
getPayloadFieldBuilder() {
|
|
if (payloadBuilder_ == null) {
|
|
payloadBuilder_ = new com.google.protobuf.SingleFieldBuilder<
|
|
akka.persistence.serialization.MessageFormats.PersistentPayload, akka.persistence.serialization.MessageFormats.PersistentPayload.Builder, akka.persistence.serialization.MessageFormats.PersistentPayloadOrBuilder>(
|
|
payload_,
|
|
getParentForChildren(),
|
|
isClean());
|
|
payload_ = null;
|
|
}
|
|
return payloadBuilder_;
|
|
}
|
|
|
|
// optional int64 sequenceNr = 2;
|
|
private long sequenceNr_ ;
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
public boolean hasSequenceNr() {
|
|
return ((bitField0_ & 0x00000002) == 0x00000002);
|
|
}
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
public long getSequenceNr() {
|
|
return sequenceNr_;
|
|
}
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
public Builder setSequenceNr(long value) {
|
|
bitField0_ |= 0x00000002;
|
|
sequenceNr_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
public Builder clearSequenceNr() {
|
|
bitField0_ = (bitField0_ & ~0x00000002);
|
|
sequenceNr_ = 0L;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// optional string processorId = 3;
|
|
private java.lang.Object processorId_ = "";
|
|
/**
|
|
* <code>optional string processorId = 3;</code>
|
|
*/
|
|
public boolean hasProcessorId() {
|
|
return ((bitField0_ & 0x00000004) == 0x00000004);
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 3;</code>
|
|
*/
|
|
public java.lang.String getProcessorId() {
|
|
java.lang.Object ref = processorId_;
|
|
if (!(ref instanceof java.lang.String)) {
|
|
java.lang.String s = ((com.google.protobuf.ByteString) ref)
|
|
.toStringUtf8();
|
|
processorId_ = s;
|
|
return s;
|
|
} else {
|
|
return (java.lang.String) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 3;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getProcessorIdBytes() {
|
|
java.lang.Object ref = processorId_;
|
|
if (ref instanceof String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
processorId_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 3;</code>
|
|
*/
|
|
public Builder setProcessorId(
|
|
java.lang.String value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000004;
|
|
processorId_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 3;</code>
|
|
*/
|
|
public Builder clearProcessorId() {
|
|
bitField0_ = (bitField0_ & ~0x00000004);
|
|
processorId_ = getDefaultInstance().getProcessorId();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 3;</code>
|
|
*/
|
|
public Builder setProcessorIdBytes(
|
|
com.google.protobuf.ByteString value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000004;
|
|
processorId_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// optional string channelId = 4;
|
|
private java.lang.Object channelId_ = "";
|
|
/**
|
|
* <code>optional string channelId = 4;</code>
|
|
*/
|
|
public boolean hasChannelId() {
|
|
return ((bitField0_ & 0x00000008) == 0x00000008);
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 4;</code>
|
|
*/
|
|
public java.lang.String getChannelId() {
|
|
java.lang.Object ref = channelId_;
|
|
if (!(ref instanceof java.lang.String)) {
|
|
java.lang.String s = ((com.google.protobuf.ByteString) ref)
|
|
.toStringUtf8();
|
|
channelId_ = s;
|
|
return s;
|
|
} else {
|
|
return (java.lang.String) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 4;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getChannelIdBytes() {
|
|
java.lang.Object ref = channelId_;
|
|
if (ref instanceof String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
channelId_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 4;</code>
|
|
*/
|
|
public Builder setChannelId(
|
|
java.lang.String value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000008;
|
|
channelId_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 4;</code>
|
|
*/
|
|
public Builder clearChannelId() {
|
|
bitField0_ = (bitField0_ & ~0x00000008);
|
|
channelId_ = getDefaultInstance().getChannelId();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 4;</code>
|
|
*/
|
|
public Builder setChannelIdBytes(
|
|
com.google.protobuf.ByteString value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000008;
|
|
channelId_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// optional bool deleted = 5;
|
|
private boolean deleted_ ;
|
|
/**
|
|
* <code>optional bool deleted = 5;</code>
|
|
*/
|
|
public boolean hasDeleted() {
|
|
return ((bitField0_ & 0x00000010) == 0x00000010);
|
|
}
|
|
/**
|
|
* <code>optional bool deleted = 5;</code>
|
|
*/
|
|
public boolean getDeleted() {
|
|
return deleted_;
|
|
}
|
|
/**
|
|
* <code>optional bool deleted = 5;</code>
|
|
*/
|
|
public Builder setDeleted(boolean value) {
|
|
bitField0_ |= 0x00000010;
|
|
deleted_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional bool deleted = 5;</code>
|
|
*/
|
|
public Builder clearDeleted() {
|
|
bitField0_ = (bitField0_ & ~0x00000010);
|
|
deleted_ = false;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// optional bool resolved = 6;
|
|
private boolean resolved_ ;
|
|
/**
|
|
* <code>optional bool resolved = 6;</code>
|
|
*/
|
|
public boolean hasResolved() {
|
|
return ((bitField0_ & 0x00000020) == 0x00000020);
|
|
}
|
|
/**
|
|
* <code>optional bool resolved = 6;</code>
|
|
*/
|
|
public boolean getResolved() {
|
|
return resolved_;
|
|
}
|
|
/**
|
|
* <code>optional bool resolved = 6;</code>
|
|
*/
|
|
public Builder setResolved(boolean value) {
|
|
bitField0_ |= 0x00000020;
|
|
resolved_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional bool resolved = 6;</code>
|
|
*/
|
|
public Builder clearResolved() {
|
|
bitField0_ = (bitField0_ & ~0x00000020);
|
|
resolved_ = false;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// repeated string confirms = 8;
|
|
private com.google.protobuf.LazyStringList confirms_ = com.google.protobuf.LazyStringArrayList.EMPTY;
|
|
private void ensureConfirmsIsMutable() {
|
|
if (!((bitField0_ & 0x00000040) == 0x00000040)) {
|
|
confirms_ = new com.google.protobuf.LazyStringArrayList(confirms_);
|
|
bitField0_ |= 0x00000040;
|
|
}
|
|
}
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
public java.util.List<java.lang.String>
|
|
getConfirmsList() {
|
|
return java.util.Collections.unmodifiableList(confirms_);
|
|
}
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
public int getConfirmsCount() {
|
|
return confirms_.size();
|
|
}
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
public java.lang.String getConfirms(int index) {
|
|
return confirms_.get(index);
|
|
}
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getConfirmsBytes(int index) {
|
|
return confirms_.getByteString(index);
|
|
}
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
public Builder setConfirms(
|
|
int index, java.lang.String value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
ensureConfirmsIsMutable();
|
|
confirms_.set(index, value);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
public Builder addConfirms(
|
|
java.lang.String value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
ensureConfirmsIsMutable();
|
|
confirms_.add(value);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
public Builder addAllConfirms(
|
|
java.lang.Iterable<java.lang.String> values) {
|
|
ensureConfirmsIsMutable();
|
|
super.addAll(values, confirms_);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
public Builder clearConfirms() {
|
|
confirms_ = com.google.protobuf.LazyStringArrayList.EMPTY;
|
|
bitField0_ = (bitField0_ & ~0x00000040);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated string confirms = 8;</code>
|
|
*/
|
|
public Builder addConfirmsBytes(
|
|
com.google.protobuf.ByteString value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
ensureConfirmsIsMutable();
|
|
confirms_.add(value);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// optional .ConfirmMessage confirmMessage = 10;
|
|
private akka.persistence.serialization.MessageFormats.ConfirmMessage confirmMessage_ = akka.persistence.serialization.MessageFormats.ConfirmMessage.getDefaultInstance();
|
|
private com.google.protobuf.SingleFieldBuilder<
|
|
akka.persistence.serialization.MessageFormats.ConfirmMessage, akka.persistence.serialization.MessageFormats.ConfirmMessage.Builder, akka.persistence.serialization.MessageFormats.ConfirmMessageOrBuilder> confirmMessageBuilder_;
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
public boolean hasConfirmMessage() {
|
|
return ((bitField0_ & 0x00000080) == 0x00000080);
|
|
}
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
public akka.persistence.serialization.MessageFormats.ConfirmMessage getConfirmMessage() {
|
|
if (confirmMessageBuilder_ == null) {
|
|
return confirmMessage_;
|
|
} else {
|
|
return confirmMessageBuilder_.getMessage();
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
public Builder setConfirmMessage(akka.persistence.serialization.MessageFormats.ConfirmMessage value) {
|
|
if (confirmMessageBuilder_ == null) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
confirmMessage_ = value;
|
|
onChanged();
|
|
} else {
|
|
confirmMessageBuilder_.setMessage(value);
|
|
}
|
|
bitField0_ |= 0x00000080;
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
public Builder setConfirmMessage(
|
|
akka.persistence.serialization.MessageFormats.ConfirmMessage.Builder builderForValue) {
|
|
if (confirmMessageBuilder_ == null) {
|
|
confirmMessage_ = builderForValue.build();
|
|
onChanged();
|
|
} else {
|
|
confirmMessageBuilder_.setMessage(builderForValue.build());
|
|
}
|
|
bitField0_ |= 0x00000080;
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
public Builder mergeConfirmMessage(akka.persistence.serialization.MessageFormats.ConfirmMessage value) {
|
|
if (confirmMessageBuilder_ == null) {
|
|
if (((bitField0_ & 0x00000080) == 0x00000080) &&
|
|
confirmMessage_ != akka.persistence.serialization.MessageFormats.ConfirmMessage.getDefaultInstance()) {
|
|
confirmMessage_ =
|
|
akka.persistence.serialization.MessageFormats.ConfirmMessage.newBuilder(confirmMessage_).mergeFrom(value).buildPartial();
|
|
} else {
|
|
confirmMessage_ = value;
|
|
}
|
|
onChanged();
|
|
} else {
|
|
confirmMessageBuilder_.mergeFrom(value);
|
|
}
|
|
bitField0_ |= 0x00000080;
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
public Builder clearConfirmMessage() {
|
|
if (confirmMessageBuilder_ == null) {
|
|
confirmMessage_ = akka.persistence.serialization.MessageFormats.ConfirmMessage.getDefaultInstance();
|
|
onChanged();
|
|
} else {
|
|
confirmMessageBuilder_.clear();
|
|
}
|
|
bitField0_ = (bitField0_ & ~0x00000080);
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
public akka.persistence.serialization.MessageFormats.ConfirmMessage.Builder getConfirmMessageBuilder() {
|
|
bitField0_ |= 0x00000080;
|
|
onChanged();
|
|
return getConfirmMessageFieldBuilder().getBuilder();
|
|
}
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
public akka.persistence.serialization.MessageFormats.ConfirmMessageOrBuilder getConfirmMessageOrBuilder() {
|
|
if (confirmMessageBuilder_ != null) {
|
|
return confirmMessageBuilder_.getMessageOrBuilder();
|
|
} else {
|
|
return confirmMessage_;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional .ConfirmMessage confirmMessage = 10;</code>
|
|
*/
|
|
private com.google.protobuf.SingleFieldBuilder<
|
|
akka.persistence.serialization.MessageFormats.ConfirmMessage, akka.persistence.serialization.MessageFormats.ConfirmMessage.Builder, akka.persistence.serialization.MessageFormats.ConfirmMessageOrBuilder>
|
|
getConfirmMessageFieldBuilder() {
|
|
if (confirmMessageBuilder_ == null) {
|
|
confirmMessageBuilder_ = new com.google.protobuf.SingleFieldBuilder<
|
|
akka.persistence.serialization.MessageFormats.ConfirmMessage, akka.persistence.serialization.MessageFormats.ConfirmMessage.Builder, akka.persistence.serialization.MessageFormats.ConfirmMessageOrBuilder>(
|
|
confirmMessage_,
|
|
getParentForChildren(),
|
|
isClean());
|
|
confirmMessage_ = null;
|
|
}
|
|
return confirmMessageBuilder_;
|
|
}
|
|
|
|
// optional string confirmTarget = 9;
|
|
private java.lang.Object confirmTarget_ = "";
|
|
/**
|
|
* <code>optional string confirmTarget = 9;</code>
|
|
*/
|
|
public boolean hasConfirmTarget() {
|
|
return ((bitField0_ & 0x00000100) == 0x00000100);
|
|
}
|
|
/**
|
|
* <code>optional string confirmTarget = 9;</code>
|
|
*/
|
|
public java.lang.String getConfirmTarget() {
|
|
java.lang.Object ref = confirmTarget_;
|
|
if (!(ref instanceof java.lang.String)) {
|
|
java.lang.String s = ((com.google.protobuf.ByteString) ref)
|
|
.toStringUtf8();
|
|
confirmTarget_ = s;
|
|
return s;
|
|
} else {
|
|
return (java.lang.String) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string confirmTarget = 9;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getConfirmTargetBytes() {
|
|
java.lang.Object ref = confirmTarget_;
|
|
if (ref instanceof String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
confirmTarget_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string confirmTarget = 9;</code>
|
|
*/
|
|
public Builder setConfirmTarget(
|
|
java.lang.String value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000100;
|
|
confirmTarget_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional string confirmTarget = 9;</code>
|
|
*/
|
|
public Builder clearConfirmTarget() {
|
|
bitField0_ = (bitField0_ & ~0x00000100);
|
|
confirmTarget_ = getDefaultInstance().getConfirmTarget();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional string confirmTarget = 9;</code>
|
|
*/
|
|
public Builder setConfirmTargetBytes(
|
|
com.google.protobuf.ByteString value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000100;
|
|
confirmTarget_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// optional string sender = 7;
|
|
private java.lang.Object sender_ = "";
|
|
/**
|
|
* <code>optional string sender = 7;</code>
|
|
*/
|
|
public boolean hasSender() {
|
|
return ((bitField0_ & 0x00000200) == 0x00000200);
|
|
}
|
|
/**
|
|
* <code>optional string sender = 7;</code>
|
|
*/
|
|
public java.lang.String getSender() {
|
|
java.lang.Object ref = sender_;
|
|
if (!(ref instanceof java.lang.String)) {
|
|
java.lang.String s = ((com.google.protobuf.ByteString) ref)
|
|
.toStringUtf8();
|
|
sender_ = s;
|
|
return s;
|
|
} else {
|
|
return (java.lang.String) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string sender = 7;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getSenderBytes() {
|
|
java.lang.Object ref = sender_;
|
|
if (ref instanceof String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
sender_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string sender = 7;</code>
|
|
*/
|
|
public Builder setSender(
|
|
java.lang.String value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000200;
|
|
sender_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional string sender = 7;</code>
|
|
*/
|
|
public Builder clearSender() {
|
|
bitField0_ = (bitField0_ & ~0x00000200);
|
|
sender_ = getDefaultInstance().getSender();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional string sender = 7;</code>
|
|
*/
|
|
public Builder setSenderBytes(
|
|
com.google.protobuf.ByteString value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000200;
|
|
sender_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// @@protoc_insertion_point(builder_scope:PersistentMessage)
|
|
}
|
|
|
|
static {
|
|
defaultInstance = new PersistentMessage(true);
|
|
defaultInstance.initFields();
|
|
}
|
|
|
|
// @@protoc_insertion_point(class_scope:PersistentMessage)
|
|
}
|
|
|
|
public interface PersistentPayloadOrBuilder
|
|
extends com.google.protobuf.MessageOrBuilder {
|
|
|
|
// required int32 serializerId = 1;
|
|
/**
|
|
* <code>required int32 serializerId = 1;</code>
|
|
*/
|
|
boolean hasSerializerId();
|
|
/**
|
|
* <code>required int32 serializerId = 1;</code>
|
|
*/
|
|
int getSerializerId();
|
|
|
|
// required bytes payload = 2;
|
|
/**
|
|
* <code>required bytes payload = 2;</code>
|
|
*/
|
|
boolean hasPayload();
|
|
/**
|
|
* <code>required bytes payload = 2;</code>
|
|
*/
|
|
com.google.protobuf.ByteString getPayload();
|
|
|
|
// optional bytes payloadManifest = 3;
|
|
/**
|
|
* <code>optional bytes payloadManifest = 3;</code>
|
|
*/
|
|
boolean hasPayloadManifest();
|
|
/**
|
|
* <code>optional bytes payloadManifest = 3;</code>
|
|
*/
|
|
com.google.protobuf.ByteString getPayloadManifest();
|
|
}
|
|
/**
|
|
* Protobuf type {@code PersistentPayload}
|
|
*/
|
|
public static final class PersistentPayload extends
|
|
com.google.protobuf.GeneratedMessage
|
|
implements PersistentPayloadOrBuilder {
|
|
// Use PersistentPayload.newBuilder() to construct.
|
|
private PersistentPayload(com.google.protobuf.GeneratedMessage.Builder<?> builder) {
|
|
super(builder);
|
|
this.unknownFields = builder.getUnknownFields();
|
|
}
|
|
private PersistentPayload(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
|
|
|
|
private static final PersistentPayload defaultInstance;
|
|
public static PersistentPayload getDefaultInstance() {
|
|
return defaultInstance;
|
|
}
|
|
|
|
public PersistentPayload getDefaultInstanceForType() {
|
|
return defaultInstance;
|
|
}
|
|
|
|
private final com.google.protobuf.UnknownFieldSet unknownFields;
|
|
@java.lang.Override
|
|
public final com.google.protobuf.UnknownFieldSet
|
|
getUnknownFields() {
|
|
return this.unknownFields;
|
|
}
|
|
private PersistentPayload(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
initFields();
|
|
int mutable_bitField0_ = 0;
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
com.google.protobuf.UnknownFieldSet.newBuilder();
|
|
try {
|
|
boolean done = false;
|
|
while (!done) {
|
|
int tag = input.readTag();
|
|
switch (tag) {
|
|
case 0:
|
|
done = true;
|
|
break;
|
|
default: {
|
|
if (!parseUnknownField(input, unknownFields,
|
|
extensionRegistry, tag)) {
|
|
done = true;
|
|
}
|
|
break;
|
|
}
|
|
case 8: {
|
|
bitField0_ |= 0x00000001;
|
|
serializerId_ = input.readInt32();
|
|
break;
|
|
}
|
|
case 18: {
|
|
bitField0_ |= 0x00000002;
|
|
payload_ = input.readBytes();
|
|
break;
|
|
}
|
|
case 26: {
|
|
bitField0_ |= 0x00000004;
|
|
payloadManifest_ = input.readBytes();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
throw e.setUnfinishedMessage(this);
|
|
} catch (java.io.IOException e) {
|
|
throw new com.google.protobuf.InvalidProtocolBufferException(
|
|
e.getMessage()).setUnfinishedMessage(this);
|
|
} finally {
|
|
this.unknownFields = unknownFields.build();
|
|
makeExtensionsImmutable();
|
|
}
|
|
}
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_PersistentPayload_descriptor;
|
|
}
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_PersistentPayload_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
akka.persistence.serialization.MessageFormats.PersistentPayload.class, akka.persistence.serialization.MessageFormats.PersistentPayload.Builder.class);
|
|
}
|
|
|
|
public static com.google.protobuf.Parser<PersistentPayload> PARSER =
|
|
new com.google.protobuf.AbstractParser<PersistentPayload>() {
|
|
public PersistentPayload parsePartialFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return new PersistentPayload(input, extensionRegistry);
|
|
}
|
|
};
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Parser<PersistentPayload> getParserForType() {
|
|
return PARSER;
|
|
}
|
|
|
|
private int bitField0_;
|
|
// required int32 serializerId = 1;
|
|
public static final int SERIALIZERID_FIELD_NUMBER = 1;
|
|
private int serializerId_;
|
|
/**
|
|
* <code>required int32 serializerId = 1;</code>
|
|
*/
|
|
public boolean hasSerializerId() {
|
|
return ((bitField0_ & 0x00000001) == 0x00000001);
|
|
}
|
|
/**
|
|
* <code>required int32 serializerId = 1;</code>
|
|
*/
|
|
public int getSerializerId() {
|
|
return serializerId_;
|
|
}
|
|
|
|
// required bytes payload = 2;
|
|
public static final int PAYLOAD_FIELD_NUMBER = 2;
|
|
private com.google.protobuf.ByteString payload_;
|
|
/**
|
|
* <code>required bytes payload = 2;</code>
|
|
*/
|
|
public boolean hasPayload() {
|
|
return ((bitField0_ & 0x00000002) == 0x00000002);
|
|
}
|
|
/**
|
|
* <code>required bytes payload = 2;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString getPayload() {
|
|
return payload_;
|
|
}
|
|
|
|
// optional bytes payloadManifest = 3;
|
|
public static final int PAYLOADMANIFEST_FIELD_NUMBER = 3;
|
|
private com.google.protobuf.ByteString payloadManifest_;
|
|
/**
|
|
* <code>optional bytes payloadManifest = 3;</code>
|
|
*/
|
|
public boolean hasPayloadManifest() {
|
|
return ((bitField0_ & 0x00000004) == 0x00000004);
|
|
}
|
|
/**
|
|
* <code>optional bytes payloadManifest = 3;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString getPayloadManifest() {
|
|
return payloadManifest_;
|
|
}
|
|
|
|
private void initFields() {
|
|
serializerId_ = 0;
|
|
payload_ = com.google.protobuf.ByteString.EMPTY;
|
|
payloadManifest_ = com.google.protobuf.ByteString.EMPTY;
|
|
}
|
|
private byte memoizedIsInitialized = -1;
|
|
public final boolean isInitialized() {
|
|
byte isInitialized = memoizedIsInitialized;
|
|
if (isInitialized != -1) return isInitialized == 1;
|
|
|
|
if (!hasSerializerId()) {
|
|
memoizedIsInitialized = 0;
|
|
return false;
|
|
}
|
|
if (!hasPayload()) {
|
|
memoizedIsInitialized = 0;
|
|
return false;
|
|
}
|
|
memoizedIsInitialized = 1;
|
|
return true;
|
|
}
|
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
throws java.io.IOException {
|
|
getSerializedSize();
|
|
if (((bitField0_ & 0x00000001) == 0x00000001)) {
|
|
output.writeInt32(1, serializerId_);
|
|
}
|
|
if (((bitField0_ & 0x00000002) == 0x00000002)) {
|
|
output.writeBytes(2, payload_);
|
|
}
|
|
if (((bitField0_ & 0x00000004) == 0x00000004)) {
|
|
output.writeBytes(3, payloadManifest_);
|
|
}
|
|
getUnknownFields().writeTo(output);
|
|
}
|
|
|
|
private int memoizedSerializedSize = -1;
|
|
public int getSerializedSize() {
|
|
int size = memoizedSerializedSize;
|
|
if (size != -1) return size;
|
|
|
|
size = 0;
|
|
if (((bitField0_ & 0x00000001) == 0x00000001)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeInt32Size(1, serializerId_);
|
|
}
|
|
if (((bitField0_ & 0x00000002) == 0x00000002)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBytesSize(2, payload_);
|
|
}
|
|
if (((bitField0_ & 0x00000004) == 0x00000004)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBytesSize(3, payloadManifest_);
|
|
}
|
|
size += getUnknownFields().getSerializedSize();
|
|
memoizedSerializedSize = size;
|
|
return size;
|
|
}
|
|
|
|
private static final long serialVersionUID = 0L;
|
|
@java.lang.Override
|
|
protected java.lang.Object writeReplace()
|
|
throws java.io.ObjectStreamException {
|
|
return super.writeReplace();
|
|
}
|
|
|
|
public static akka.persistence.serialization.MessageFormats.PersistentPayload parseFrom(
|
|
com.google.protobuf.ByteString data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentPayload parseFrom(
|
|
com.google.protobuf.ByteString data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentPayload parseFrom(byte[] data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentPayload parseFrom(
|
|
byte[] data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentPayload parseFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return PARSER.parseFrom(input);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentPayload parseFrom(
|
|
java.io.InputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return PARSER.parseFrom(input, extensionRegistry);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentPayload parseDelimitedFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return PARSER.parseDelimitedFrom(input);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentPayload parseDelimitedFrom(
|
|
java.io.InputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return PARSER.parseDelimitedFrom(input, extensionRegistry);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentPayload parseFrom(
|
|
com.google.protobuf.CodedInputStream input)
|
|
throws java.io.IOException {
|
|
return PARSER.parseFrom(input);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.PersistentPayload parseFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return PARSER.parseFrom(input, extensionRegistry);
|
|
}
|
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
|
public static Builder newBuilder(akka.persistence.serialization.MessageFormats.PersistentPayload prototype) {
|
|
return newBuilder().mergeFrom(prototype);
|
|
}
|
|
public Builder toBuilder() { return newBuilder(this); }
|
|
|
|
@java.lang.Override
|
|
protected Builder newBuilderForType(
|
|
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
|
|
Builder builder = new Builder(parent);
|
|
return builder;
|
|
}
|
|
/**
|
|
* Protobuf type {@code PersistentPayload}
|
|
*/
|
|
public static final class Builder extends
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder>
|
|
implements akka.persistence.serialization.MessageFormats.PersistentPayloadOrBuilder {
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_PersistentPayload_descriptor;
|
|
}
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_PersistentPayload_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
akka.persistence.serialization.MessageFormats.PersistentPayload.class, akka.persistence.serialization.MessageFormats.PersistentPayload.Builder.class);
|
|
}
|
|
|
|
// Construct using akka.persistence.serialization.MessageFormats.PersistentPayload.newBuilder()
|
|
private Builder() {
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
|
|
private Builder(
|
|
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
|
|
super(parent);
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
private void maybeForceBuilderInitialization() {
|
|
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
|
|
}
|
|
}
|
|
private static Builder create() {
|
|
return new Builder();
|
|
}
|
|
|
|
public Builder clear() {
|
|
super.clear();
|
|
serializerId_ = 0;
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
payload_ = com.google.protobuf.ByteString.EMPTY;
|
|
bitField0_ = (bitField0_ & ~0x00000002);
|
|
payloadManifest_ = com.google.protobuf.ByteString.EMPTY;
|
|
bitField0_ = (bitField0_ & ~0x00000004);
|
|
return this;
|
|
}
|
|
|
|
public Builder clone() {
|
|
return create().mergeFrom(buildPartial());
|
|
}
|
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptorForType() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_PersistentPayload_descriptor;
|
|
}
|
|
|
|
public akka.persistence.serialization.MessageFormats.PersistentPayload getDefaultInstanceForType() {
|
|
return akka.persistence.serialization.MessageFormats.PersistentPayload.getDefaultInstance();
|
|
}
|
|
|
|
public akka.persistence.serialization.MessageFormats.PersistentPayload build() {
|
|
akka.persistence.serialization.MessageFormats.PersistentPayload result = buildPartial();
|
|
if (!result.isInitialized()) {
|
|
throw newUninitializedMessageException(result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
public akka.persistence.serialization.MessageFormats.PersistentPayload buildPartial() {
|
|
akka.persistence.serialization.MessageFormats.PersistentPayload result = new akka.persistence.serialization.MessageFormats.PersistentPayload(this);
|
|
int from_bitField0_ = bitField0_;
|
|
int to_bitField0_ = 0;
|
|
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
|
|
to_bitField0_ |= 0x00000001;
|
|
}
|
|
result.serializerId_ = serializerId_;
|
|
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
|
|
to_bitField0_ |= 0x00000002;
|
|
}
|
|
result.payload_ = payload_;
|
|
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
|
|
to_bitField0_ |= 0x00000004;
|
|
}
|
|
result.payloadManifest_ = payloadManifest_;
|
|
result.bitField0_ = to_bitField0_;
|
|
onBuilt();
|
|
return result;
|
|
}
|
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
|
if (other instanceof akka.persistence.serialization.MessageFormats.PersistentPayload) {
|
|
return mergeFrom((akka.persistence.serialization.MessageFormats.PersistentPayload)other);
|
|
} else {
|
|
super.mergeFrom(other);
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public Builder mergeFrom(akka.persistence.serialization.MessageFormats.PersistentPayload other) {
|
|
if (other == akka.persistence.serialization.MessageFormats.PersistentPayload.getDefaultInstance()) return this;
|
|
if (other.hasSerializerId()) {
|
|
setSerializerId(other.getSerializerId());
|
|
}
|
|
if (other.hasPayload()) {
|
|
setPayload(other.getPayload());
|
|
}
|
|
if (other.hasPayloadManifest()) {
|
|
setPayloadManifest(other.getPayloadManifest());
|
|
}
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
return this;
|
|
}
|
|
|
|
public final boolean isInitialized() {
|
|
if (!hasSerializerId()) {
|
|
|
|
return false;
|
|
}
|
|
if (!hasPayload()) {
|
|
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
public Builder mergeFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
akka.persistence.serialization.MessageFormats.PersistentPayload parsedMessage = null;
|
|
try {
|
|
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
parsedMessage = (akka.persistence.serialization.MessageFormats.PersistentPayload) e.getUnfinishedMessage();
|
|
throw e;
|
|
} finally {
|
|
if (parsedMessage != null) {
|
|
mergeFrom(parsedMessage);
|
|
}
|
|
}
|
|
return this;
|
|
}
|
|
private int bitField0_;
|
|
|
|
// required int32 serializerId = 1;
|
|
private int serializerId_ ;
|
|
/**
|
|
* <code>required int32 serializerId = 1;</code>
|
|
*/
|
|
public boolean hasSerializerId() {
|
|
return ((bitField0_ & 0x00000001) == 0x00000001);
|
|
}
|
|
/**
|
|
* <code>required int32 serializerId = 1;</code>
|
|
*/
|
|
public int getSerializerId() {
|
|
return serializerId_;
|
|
}
|
|
/**
|
|
* <code>required int32 serializerId = 1;</code>
|
|
*/
|
|
public Builder setSerializerId(int value) {
|
|
bitField0_ |= 0x00000001;
|
|
serializerId_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>required int32 serializerId = 1;</code>
|
|
*/
|
|
public Builder clearSerializerId() {
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
serializerId_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// required bytes payload = 2;
|
|
private com.google.protobuf.ByteString payload_ = com.google.protobuf.ByteString.EMPTY;
|
|
/**
|
|
* <code>required bytes payload = 2;</code>
|
|
*/
|
|
public boolean hasPayload() {
|
|
return ((bitField0_ & 0x00000002) == 0x00000002);
|
|
}
|
|
/**
|
|
* <code>required bytes payload = 2;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString getPayload() {
|
|
return payload_;
|
|
}
|
|
/**
|
|
* <code>required bytes payload = 2;</code>
|
|
*/
|
|
public Builder setPayload(com.google.protobuf.ByteString value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000002;
|
|
payload_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>required bytes payload = 2;</code>
|
|
*/
|
|
public Builder clearPayload() {
|
|
bitField0_ = (bitField0_ & ~0x00000002);
|
|
payload_ = getDefaultInstance().getPayload();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// optional bytes payloadManifest = 3;
|
|
private com.google.protobuf.ByteString payloadManifest_ = com.google.protobuf.ByteString.EMPTY;
|
|
/**
|
|
* <code>optional bytes payloadManifest = 3;</code>
|
|
*/
|
|
public boolean hasPayloadManifest() {
|
|
return ((bitField0_ & 0x00000004) == 0x00000004);
|
|
}
|
|
/**
|
|
* <code>optional bytes payloadManifest = 3;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString getPayloadManifest() {
|
|
return payloadManifest_;
|
|
}
|
|
/**
|
|
* <code>optional bytes payloadManifest = 3;</code>
|
|
*/
|
|
public Builder setPayloadManifest(com.google.protobuf.ByteString value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000004;
|
|
payloadManifest_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional bytes payloadManifest = 3;</code>
|
|
*/
|
|
public Builder clearPayloadManifest() {
|
|
bitField0_ = (bitField0_ & ~0x00000004);
|
|
payloadManifest_ = getDefaultInstance().getPayloadManifest();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// @@protoc_insertion_point(builder_scope:PersistentPayload)
|
|
}
|
|
|
|
static {
|
|
defaultInstance = new PersistentPayload(true);
|
|
defaultInstance.initFields();
|
|
}
|
|
|
|
// @@protoc_insertion_point(class_scope:PersistentPayload)
|
|
}
|
|
|
|
public interface ConfirmMessageOrBuilder
|
|
extends com.google.protobuf.MessageOrBuilder {
|
|
|
|
// optional string processorId = 1;
|
|
/**
|
|
* <code>optional string processorId = 1;</code>
|
|
*/
|
|
boolean hasProcessorId();
|
|
/**
|
|
* <code>optional string processorId = 1;</code>
|
|
*/
|
|
java.lang.String getProcessorId();
|
|
/**
|
|
* <code>optional string processorId = 1;</code>
|
|
*/
|
|
com.google.protobuf.ByteString
|
|
getProcessorIdBytes();
|
|
|
|
// optional int64 sequenceNr = 2;
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
boolean hasSequenceNr();
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
long getSequenceNr();
|
|
|
|
// optional string channelId = 3;
|
|
/**
|
|
* <code>optional string channelId = 3;</code>
|
|
*/
|
|
boolean hasChannelId();
|
|
/**
|
|
* <code>optional string channelId = 3;</code>
|
|
*/
|
|
java.lang.String getChannelId();
|
|
/**
|
|
* <code>optional string channelId = 3;</code>
|
|
*/
|
|
com.google.protobuf.ByteString
|
|
getChannelIdBytes();
|
|
}
|
|
/**
|
|
* Protobuf type {@code ConfirmMessage}
|
|
*/
|
|
public static final class ConfirmMessage extends
|
|
com.google.protobuf.GeneratedMessage
|
|
implements ConfirmMessageOrBuilder {
|
|
// Use ConfirmMessage.newBuilder() to construct.
|
|
private ConfirmMessage(com.google.protobuf.GeneratedMessage.Builder<?> builder) {
|
|
super(builder);
|
|
this.unknownFields = builder.getUnknownFields();
|
|
}
|
|
private ConfirmMessage(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
|
|
|
|
private static final ConfirmMessage defaultInstance;
|
|
public static ConfirmMessage getDefaultInstance() {
|
|
return defaultInstance;
|
|
}
|
|
|
|
public ConfirmMessage getDefaultInstanceForType() {
|
|
return defaultInstance;
|
|
}
|
|
|
|
private final com.google.protobuf.UnknownFieldSet unknownFields;
|
|
@java.lang.Override
|
|
public final com.google.protobuf.UnknownFieldSet
|
|
getUnknownFields() {
|
|
return this.unknownFields;
|
|
}
|
|
private ConfirmMessage(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
initFields();
|
|
int mutable_bitField0_ = 0;
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
com.google.protobuf.UnknownFieldSet.newBuilder();
|
|
try {
|
|
boolean done = false;
|
|
while (!done) {
|
|
int tag = input.readTag();
|
|
switch (tag) {
|
|
case 0:
|
|
done = true;
|
|
break;
|
|
default: {
|
|
if (!parseUnknownField(input, unknownFields,
|
|
extensionRegistry, tag)) {
|
|
done = true;
|
|
}
|
|
break;
|
|
}
|
|
case 10: {
|
|
bitField0_ |= 0x00000001;
|
|
processorId_ = input.readBytes();
|
|
break;
|
|
}
|
|
case 16: {
|
|
bitField0_ |= 0x00000002;
|
|
sequenceNr_ = input.readInt64();
|
|
break;
|
|
}
|
|
case 26: {
|
|
bitField0_ |= 0x00000004;
|
|
channelId_ = input.readBytes();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
throw e.setUnfinishedMessage(this);
|
|
} catch (java.io.IOException e) {
|
|
throw new com.google.protobuf.InvalidProtocolBufferException(
|
|
e.getMessage()).setUnfinishedMessage(this);
|
|
} finally {
|
|
this.unknownFields = unknownFields.build();
|
|
makeExtensionsImmutable();
|
|
}
|
|
}
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_ConfirmMessage_descriptor;
|
|
}
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_ConfirmMessage_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
akka.persistence.serialization.MessageFormats.ConfirmMessage.class, akka.persistence.serialization.MessageFormats.ConfirmMessage.Builder.class);
|
|
}
|
|
|
|
public static com.google.protobuf.Parser<ConfirmMessage> PARSER =
|
|
new com.google.protobuf.AbstractParser<ConfirmMessage>() {
|
|
public ConfirmMessage parsePartialFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return new ConfirmMessage(input, extensionRegistry);
|
|
}
|
|
};
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Parser<ConfirmMessage> getParserForType() {
|
|
return PARSER;
|
|
}
|
|
|
|
private int bitField0_;
|
|
// optional string processorId = 1;
|
|
public static final int PROCESSORID_FIELD_NUMBER = 1;
|
|
private java.lang.Object processorId_;
|
|
/**
|
|
* <code>optional string processorId = 1;</code>
|
|
*/
|
|
public boolean hasProcessorId() {
|
|
return ((bitField0_ & 0x00000001) == 0x00000001);
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 1;</code>
|
|
*/
|
|
public java.lang.String getProcessorId() {
|
|
java.lang.Object ref = processorId_;
|
|
if (ref instanceof java.lang.String) {
|
|
return (java.lang.String) ref;
|
|
} else {
|
|
com.google.protobuf.ByteString bs =
|
|
(com.google.protobuf.ByteString) ref;
|
|
java.lang.String s = bs.toStringUtf8();
|
|
if (bs.isValidUtf8()) {
|
|
processorId_ = s;
|
|
}
|
|
return s;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 1;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getProcessorIdBytes() {
|
|
java.lang.Object ref = processorId_;
|
|
if (ref instanceof java.lang.String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
processorId_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
|
|
// optional int64 sequenceNr = 2;
|
|
public static final int SEQUENCENR_FIELD_NUMBER = 2;
|
|
private long sequenceNr_;
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
public boolean hasSequenceNr() {
|
|
return ((bitField0_ & 0x00000002) == 0x00000002);
|
|
}
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
public long getSequenceNr() {
|
|
return sequenceNr_;
|
|
}
|
|
|
|
// optional string channelId = 3;
|
|
public static final int CHANNELID_FIELD_NUMBER = 3;
|
|
private java.lang.Object channelId_;
|
|
/**
|
|
* <code>optional string channelId = 3;</code>
|
|
*/
|
|
public boolean hasChannelId() {
|
|
return ((bitField0_ & 0x00000004) == 0x00000004);
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 3;</code>
|
|
*/
|
|
public java.lang.String getChannelId() {
|
|
java.lang.Object ref = channelId_;
|
|
if (ref instanceof java.lang.String) {
|
|
return (java.lang.String) ref;
|
|
} else {
|
|
com.google.protobuf.ByteString bs =
|
|
(com.google.protobuf.ByteString) ref;
|
|
java.lang.String s = bs.toStringUtf8();
|
|
if (bs.isValidUtf8()) {
|
|
channelId_ = s;
|
|
}
|
|
return s;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 3;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getChannelIdBytes() {
|
|
java.lang.Object ref = channelId_;
|
|
if (ref instanceof java.lang.String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
channelId_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
|
|
private void initFields() {
|
|
processorId_ = "";
|
|
sequenceNr_ = 0L;
|
|
channelId_ = "";
|
|
}
|
|
private byte memoizedIsInitialized = -1;
|
|
public final boolean isInitialized() {
|
|
byte isInitialized = memoizedIsInitialized;
|
|
if (isInitialized != -1) return isInitialized == 1;
|
|
|
|
memoizedIsInitialized = 1;
|
|
return true;
|
|
}
|
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
throws java.io.IOException {
|
|
getSerializedSize();
|
|
if (((bitField0_ & 0x00000001) == 0x00000001)) {
|
|
output.writeBytes(1, getProcessorIdBytes());
|
|
}
|
|
if (((bitField0_ & 0x00000002) == 0x00000002)) {
|
|
output.writeInt64(2, sequenceNr_);
|
|
}
|
|
if (((bitField0_ & 0x00000004) == 0x00000004)) {
|
|
output.writeBytes(3, getChannelIdBytes());
|
|
}
|
|
getUnknownFields().writeTo(output);
|
|
}
|
|
|
|
private int memoizedSerializedSize = -1;
|
|
public int getSerializedSize() {
|
|
int size = memoizedSerializedSize;
|
|
if (size != -1) return size;
|
|
|
|
size = 0;
|
|
if (((bitField0_ & 0x00000001) == 0x00000001)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBytesSize(1, getProcessorIdBytes());
|
|
}
|
|
if (((bitField0_ & 0x00000002) == 0x00000002)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeInt64Size(2, sequenceNr_);
|
|
}
|
|
if (((bitField0_ & 0x00000004) == 0x00000004)) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBytesSize(3, getChannelIdBytes());
|
|
}
|
|
size += getUnknownFields().getSerializedSize();
|
|
memoizedSerializedSize = size;
|
|
return size;
|
|
}
|
|
|
|
private static final long serialVersionUID = 0L;
|
|
@java.lang.Override
|
|
protected java.lang.Object writeReplace()
|
|
throws java.io.ObjectStreamException {
|
|
return super.writeReplace();
|
|
}
|
|
|
|
public static akka.persistence.serialization.MessageFormats.ConfirmMessage parseFrom(
|
|
com.google.protobuf.ByteString data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.ConfirmMessage parseFrom(
|
|
com.google.protobuf.ByteString data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.ConfirmMessage parseFrom(byte[] data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.ConfirmMessage parseFrom(
|
|
byte[] data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.ConfirmMessage parseFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return PARSER.parseFrom(input);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.ConfirmMessage parseFrom(
|
|
java.io.InputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return PARSER.parseFrom(input, extensionRegistry);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.ConfirmMessage parseDelimitedFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return PARSER.parseDelimitedFrom(input);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.ConfirmMessage parseDelimitedFrom(
|
|
java.io.InputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return PARSER.parseDelimitedFrom(input, extensionRegistry);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.ConfirmMessage parseFrom(
|
|
com.google.protobuf.CodedInputStream input)
|
|
throws java.io.IOException {
|
|
return PARSER.parseFrom(input);
|
|
}
|
|
public static akka.persistence.serialization.MessageFormats.ConfirmMessage parseFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return PARSER.parseFrom(input, extensionRegistry);
|
|
}
|
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
|
public static Builder newBuilder(akka.persistence.serialization.MessageFormats.ConfirmMessage prototype) {
|
|
return newBuilder().mergeFrom(prototype);
|
|
}
|
|
public Builder toBuilder() { return newBuilder(this); }
|
|
|
|
@java.lang.Override
|
|
protected Builder newBuilderForType(
|
|
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
|
|
Builder builder = new Builder(parent);
|
|
return builder;
|
|
}
|
|
/**
|
|
* Protobuf type {@code ConfirmMessage}
|
|
*/
|
|
public static final class Builder extends
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder>
|
|
implements akka.persistence.serialization.MessageFormats.ConfirmMessageOrBuilder {
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_ConfirmMessage_descriptor;
|
|
}
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_ConfirmMessage_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
akka.persistence.serialization.MessageFormats.ConfirmMessage.class, akka.persistence.serialization.MessageFormats.ConfirmMessage.Builder.class);
|
|
}
|
|
|
|
// Construct using akka.persistence.serialization.MessageFormats.ConfirmMessage.newBuilder()
|
|
private Builder() {
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
|
|
private Builder(
|
|
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
|
|
super(parent);
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
private void maybeForceBuilderInitialization() {
|
|
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
|
|
}
|
|
}
|
|
private static Builder create() {
|
|
return new Builder();
|
|
}
|
|
|
|
public Builder clear() {
|
|
super.clear();
|
|
processorId_ = "";
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
sequenceNr_ = 0L;
|
|
bitField0_ = (bitField0_ & ~0x00000002);
|
|
channelId_ = "";
|
|
bitField0_ = (bitField0_ & ~0x00000004);
|
|
return this;
|
|
}
|
|
|
|
public Builder clone() {
|
|
return create().mergeFrom(buildPartial());
|
|
}
|
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptorForType() {
|
|
return akka.persistence.serialization.MessageFormats.internal_static_ConfirmMessage_descriptor;
|
|
}
|
|
|
|
public akka.persistence.serialization.MessageFormats.ConfirmMessage getDefaultInstanceForType() {
|
|
return akka.persistence.serialization.MessageFormats.ConfirmMessage.getDefaultInstance();
|
|
}
|
|
|
|
public akka.persistence.serialization.MessageFormats.ConfirmMessage build() {
|
|
akka.persistence.serialization.MessageFormats.ConfirmMessage result = buildPartial();
|
|
if (!result.isInitialized()) {
|
|
throw newUninitializedMessageException(result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
public akka.persistence.serialization.MessageFormats.ConfirmMessage buildPartial() {
|
|
akka.persistence.serialization.MessageFormats.ConfirmMessage result = new akka.persistence.serialization.MessageFormats.ConfirmMessage(this);
|
|
int from_bitField0_ = bitField0_;
|
|
int to_bitField0_ = 0;
|
|
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
|
|
to_bitField0_ |= 0x00000001;
|
|
}
|
|
result.processorId_ = processorId_;
|
|
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
|
|
to_bitField0_ |= 0x00000002;
|
|
}
|
|
result.sequenceNr_ = sequenceNr_;
|
|
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
|
|
to_bitField0_ |= 0x00000004;
|
|
}
|
|
result.channelId_ = channelId_;
|
|
result.bitField0_ = to_bitField0_;
|
|
onBuilt();
|
|
return result;
|
|
}
|
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
|
if (other instanceof akka.persistence.serialization.MessageFormats.ConfirmMessage) {
|
|
return mergeFrom((akka.persistence.serialization.MessageFormats.ConfirmMessage)other);
|
|
} else {
|
|
super.mergeFrom(other);
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public Builder mergeFrom(akka.persistence.serialization.MessageFormats.ConfirmMessage other) {
|
|
if (other == akka.persistence.serialization.MessageFormats.ConfirmMessage.getDefaultInstance()) return this;
|
|
if (other.hasProcessorId()) {
|
|
bitField0_ |= 0x00000001;
|
|
processorId_ = other.processorId_;
|
|
onChanged();
|
|
}
|
|
if (other.hasSequenceNr()) {
|
|
setSequenceNr(other.getSequenceNr());
|
|
}
|
|
if (other.hasChannelId()) {
|
|
bitField0_ |= 0x00000004;
|
|
channelId_ = other.channelId_;
|
|
onChanged();
|
|
}
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
return this;
|
|
}
|
|
|
|
public final boolean isInitialized() {
|
|
return true;
|
|
}
|
|
|
|
public Builder mergeFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
akka.persistence.serialization.MessageFormats.ConfirmMessage parsedMessage = null;
|
|
try {
|
|
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
parsedMessage = (akka.persistence.serialization.MessageFormats.ConfirmMessage) e.getUnfinishedMessage();
|
|
throw e;
|
|
} finally {
|
|
if (parsedMessage != null) {
|
|
mergeFrom(parsedMessage);
|
|
}
|
|
}
|
|
return this;
|
|
}
|
|
private int bitField0_;
|
|
|
|
// optional string processorId = 1;
|
|
private java.lang.Object processorId_ = "";
|
|
/**
|
|
* <code>optional string processorId = 1;</code>
|
|
*/
|
|
public boolean hasProcessorId() {
|
|
return ((bitField0_ & 0x00000001) == 0x00000001);
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 1;</code>
|
|
*/
|
|
public java.lang.String getProcessorId() {
|
|
java.lang.Object ref = processorId_;
|
|
if (!(ref instanceof java.lang.String)) {
|
|
java.lang.String s = ((com.google.protobuf.ByteString) ref)
|
|
.toStringUtf8();
|
|
processorId_ = s;
|
|
return s;
|
|
} else {
|
|
return (java.lang.String) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 1;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getProcessorIdBytes() {
|
|
java.lang.Object ref = processorId_;
|
|
if (ref instanceof String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
processorId_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 1;</code>
|
|
*/
|
|
public Builder setProcessorId(
|
|
java.lang.String value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000001;
|
|
processorId_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 1;</code>
|
|
*/
|
|
public Builder clearProcessorId() {
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
processorId_ = getDefaultInstance().getProcessorId();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional string processorId = 1;</code>
|
|
*/
|
|
public Builder setProcessorIdBytes(
|
|
com.google.protobuf.ByteString value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000001;
|
|
processorId_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// optional int64 sequenceNr = 2;
|
|
private long sequenceNr_ ;
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
public boolean hasSequenceNr() {
|
|
return ((bitField0_ & 0x00000002) == 0x00000002);
|
|
}
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
public long getSequenceNr() {
|
|
return sequenceNr_;
|
|
}
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
public Builder setSequenceNr(long value) {
|
|
bitField0_ |= 0x00000002;
|
|
sequenceNr_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional int64 sequenceNr = 2;</code>
|
|
*/
|
|
public Builder clearSequenceNr() {
|
|
bitField0_ = (bitField0_ & ~0x00000002);
|
|
sequenceNr_ = 0L;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// optional string channelId = 3;
|
|
private java.lang.Object channelId_ = "";
|
|
/**
|
|
* <code>optional string channelId = 3;</code>
|
|
*/
|
|
public boolean hasChannelId() {
|
|
return ((bitField0_ & 0x00000004) == 0x00000004);
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 3;</code>
|
|
*/
|
|
public java.lang.String getChannelId() {
|
|
java.lang.Object ref = channelId_;
|
|
if (!(ref instanceof java.lang.String)) {
|
|
java.lang.String s = ((com.google.protobuf.ByteString) ref)
|
|
.toStringUtf8();
|
|
channelId_ = s;
|
|
return s;
|
|
} else {
|
|
return (java.lang.String) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 3;</code>
|
|
*/
|
|
public com.google.protobuf.ByteString
|
|
getChannelIdBytes() {
|
|
java.lang.Object ref = channelId_;
|
|
if (ref instanceof String) {
|
|
com.google.protobuf.ByteString b =
|
|
com.google.protobuf.ByteString.copyFromUtf8(
|
|
(java.lang.String) ref);
|
|
channelId_ = b;
|
|
return b;
|
|
} else {
|
|
return (com.google.protobuf.ByteString) ref;
|
|
}
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 3;</code>
|
|
*/
|
|
public Builder setChannelId(
|
|
java.lang.String value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000004;
|
|
channelId_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 3;</code>
|
|
*/
|
|
public Builder clearChannelId() {
|
|
bitField0_ = (bitField0_ & ~0x00000004);
|
|
channelId_ = getDefaultInstance().getChannelId();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>optional string channelId = 3;</code>
|
|
*/
|
|
public Builder setChannelIdBytes(
|
|
com.google.protobuf.ByteString value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
bitField0_ |= 0x00000004;
|
|
channelId_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
// @@protoc_insertion_point(builder_scope:ConfirmMessage)
|
|
}
|
|
|
|
static {
|
|
defaultInstance = new ConfirmMessage(true);
|
|
defaultInstance.initFields();
|
|
}
|
|
|
|
// @@protoc_insertion_point(class_scope:ConfirmMessage)
|
|
}
|
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
internal_static_PersistentMessage_descriptor;
|
|
private static
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
internal_static_PersistentMessage_fieldAccessorTable;
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
internal_static_PersistentPayload_descriptor;
|
|
private static
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
internal_static_PersistentPayload_fieldAccessorTable;
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
internal_static_ConfirmMessage_descriptor;
|
|
private static
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
internal_static_ConfirmMessage_fieldAccessorTable;
|
|
|
|
public static com.google.protobuf.Descriptors.FileDescriptor
|
|
getDescriptor() {
|
|
return descriptor;
|
|
}
|
|
private static com.google.protobuf.Descriptors.FileDescriptor
|
|
descriptor;
|
|
static {
|
|
java.lang.String[] descriptorData = {
|
|
"\n\024MessageFormats.proto\"\371\001\n\021PersistentMes" +
|
|
"sage\022#\n\007payload\030\001 \001(\0132\022.PersistentPayloa" +
|
|
"d\022\022\n\nsequenceNr\030\002 \001(\003\022\023\n\013processorId\030\003 \001" +
|
|
"(\t\022\021\n\tchannelId\030\004 \001(\t\022\017\n\007deleted\030\005 \001(\010\022\020" +
|
|
"\n\010resolved\030\006 \001(\010\022\020\n\010confirms\030\010 \003(\t\022\'\n\016co" +
|
|
"nfirmMessage\030\n \001(\0132\017.ConfirmMessage\022\025\n\rc" +
|
|
"onfirmTarget\030\t \001(\t\022\016\n\006sender\030\007 \001(\t\"S\n\021Pe" +
|
|
"rsistentPayload\022\024\n\014serializerId\030\001 \002(\005\022\017\n" +
|
|
"\007payload\030\002 \002(\014\022\027\n\017payloadManifest\030\003 \001(\014\"" +
|
|
"L\n\016ConfirmMessage\022\023\n\013processorId\030\001 \001(\t\022\022",
|
|
"\n\nsequenceNr\030\002 \001(\003\022\021\n\tchannelId\030\003 \001(\tB\"\n" +
|
|
"\036akka.persistence.serializationH\001"
|
|
};
|
|
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
|
|
new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
|
|
public com.google.protobuf.ExtensionRegistry assignDescriptors(
|
|
com.google.protobuf.Descriptors.FileDescriptor root) {
|
|
descriptor = root;
|
|
internal_static_PersistentMessage_descriptor =
|
|
getDescriptor().getMessageTypes().get(0);
|
|
internal_static_PersistentMessage_fieldAccessorTable = new
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
internal_static_PersistentMessage_descriptor,
|
|
new java.lang.String[] { "Payload", "SequenceNr", "ProcessorId", "ChannelId", "Deleted", "Resolved", "Confirms", "ConfirmMessage", "ConfirmTarget", "Sender", });
|
|
internal_static_PersistentPayload_descriptor =
|
|
getDescriptor().getMessageTypes().get(1);
|
|
internal_static_PersistentPayload_fieldAccessorTable = new
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
internal_static_PersistentPayload_descriptor,
|
|
new java.lang.String[] { "SerializerId", "Payload", "PayloadManifest", });
|
|
internal_static_ConfirmMessage_descriptor =
|
|
getDescriptor().getMessageTypes().get(2);
|
|
internal_static_ConfirmMessage_fieldAccessorTable = new
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
internal_static_ConfirmMessage_descriptor,
|
|
new java.lang.String[] { "ProcessorId", "SequenceNr", "ChannelId", });
|
|
return null;
|
|
}
|
|
};
|
|
com.google.protobuf.Descriptors.FileDescriptor
|
|
.internalBuildGeneratedFileFrom(descriptorData,
|
|
new com.google.protobuf.Descriptors.FileDescriptor[] {
|
|
}, assigner);
|
|
}
|
|
|
|
// @@protoc_insertion_point(outer_class_scope)
|
|
}
|