grpc.cache_client.pubsub._SubscriptionRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos-jvm Show documentation
Show all versions of client-protos-jvm Show documentation
Kotlin protobuf protocols for the JVM that define the Momento gRPC wire format
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: cachepubsub.proto
package grpc.cache_client.pubsub;
/**
*
* A description of how you want to subscribe to a topic.
*
*
* Protobuf type {@code cache_client.pubsub._SubscriptionRequest}
*/
public final class _SubscriptionRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:cache_client.pubsub._SubscriptionRequest)
_SubscriptionRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use _SubscriptionRequest.newBuilder() to construct.
private _SubscriptionRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private _SubscriptionRequest() {
cacheName_ = "";
topic_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new _SubscriptionRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.pubsub.Cachepubsub.internal_static_cache_client_pubsub__SubscriptionRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.pubsub.Cachepubsub.internal_static_cache_client_pubsub__SubscriptionRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client.pubsub._SubscriptionRequest.class, grpc.cache_client.pubsub._SubscriptionRequest.Builder.class);
}
public static final int CACHE_NAME_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object cacheName_ = "";
/**
*
* Cache namespace for the topic to which you want to subscribe.
*
*
* string cache_name = 1;
* @return The cacheName.
*/
@java.lang.Override
public java.lang.String getCacheName() {
java.lang.Object ref = cacheName_;
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();
cacheName_ = s;
return s;
}
}
/**
*
* Cache namespace for the topic to which you want to subscribe.
*
*
* string cache_name = 1;
* @return The bytes for cacheName.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getCacheNameBytes() {
java.lang.Object ref = cacheName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
cacheName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TOPIC_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object topic_ = "";
/**
*
* The literal topic name to which you want to subscribe.
*
*
* string topic = 2;
* @return The topic.
*/
@java.lang.Override
public java.lang.String getTopic() {
java.lang.Object ref = topic_;
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();
topic_ = s;
return s;
}
}
/**
*
* The literal topic name to which you want to subscribe.
*
*
* string topic = 2;
* @return The bytes for topic.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getTopicBytes() {
java.lang.Object ref = topic_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
topic_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int RESUME_AT_TOPIC_SEQUENCE_NUMBER_FIELD_NUMBER = 3;
private long resumeAtTopicSequenceNumber_ = 0L;
/**
*
* --> Providing this is not required. <--
*
* If provided, attempt to reconnect to the topic and replay messages starting from
* the provided sequence number. You may get a discontinuity if some (or all) of the
* messages are not available.
* If not provided (or 0), the subscription will begin with the latest messages.
*
*
* uint64 resume_at_topic_sequence_number = 3;
* @return The resumeAtTopicSequenceNumber.
*/
@java.lang.Override
public long getResumeAtTopicSequenceNumber() {
return resumeAtTopicSequenceNumber_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(cacheName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, cacheName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(topic_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, topic_);
}
if (resumeAtTopicSequenceNumber_ != 0L) {
output.writeUInt64(3, resumeAtTopicSequenceNumber_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(cacheName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, cacheName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(topic_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, topic_);
}
if (resumeAtTopicSequenceNumber_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeUInt64Size(3, resumeAtTopicSequenceNumber_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof grpc.cache_client.pubsub._SubscriptionRequest)) {
return super.equals(obj);
}
grpc.cache_client.pubsub._SubscriptionRequest other = (grpc.cache_client.pubsub._SubscriptionRequest) obj;
if (!getCacheName()
.equals(other.getCacheName())) return false;
if (!getTopic()
.equals(other.getTopic())) return false;
if (getResumeAtTopicSequenceNumber()
!= other.getResumeAtTopicSequenceNumber()) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + CACHE_NAME_FIELD_NUMBER;
hash = (53 * hash) + getCacheName().hashCode();
hash = (37 * hash) + TOPIC_FIELD_NUMBER;
hash = (53 * hash) + getTopic().hashCode();
hash = (37 * hash) + RESUME_AT_TOPIC_SEQUENCE_NUMBER_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getResumeAtTopicSequenceNumber());
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static grpc.cache_client.pubsub._SubscriptionRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client.pubsub._SubscriptionRequest parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client.pubsub._SubscriptionRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client.pubsub._SubscriptionRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client.pubsub._SubscriptionRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client.pubsub._SubscriptionRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client.pubsub._SubscriptionRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client.pubsub._SubscriptionRequest parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static grpc.cache_client.pubsub._SubscriptionRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static grpc.cache_client.pubsub._SubscriptionRequest parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static grpc.cache_client.pubsub._SubscriptionRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client.pubsub._SubscriptionRequest parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(grpc.cache_client.pubsub._SubscriptionRequest prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* A description of how you want to subscribe to a topic.
*
*
* Protobuf type {@code cache_client.pubsub._SubscriptionRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:cache_client.pubsub._SubscriptionRequest)
grpc.cache_client.pubsub._SubscriptionRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.pubsub.Cachepubsub.internal_static_cache_client_pubsub__SubscriptionRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.pubsub.Cachepubsub.internal_static_cache_client_pubsub__SubscriptionRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client.pubsub._SubscriptionRequest.class, grpc.cache_client.pubsub._SubscriptionRequest.Builder.class);
}
// Construct using grpc.cache_client.pubsub._SubscriptionRequest.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
cacheName_ = "";
topic_ = "";
resumeAtTopicSequenceNumber_ = 0L;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return grpc.cache_client.pubsub.Cachepubsub.internal_static_cache_client_pubsub__SubscriptionRequest_descriptor;
}
@java.lang.Override
public grpc.cache_client.pubsub._SubscriptionRequest getDefaultInstanceForType() {
return grpc.cache_client.pubsub._SubscriptionRequest.getDefaultInstance();
}
@java.lang.Override
public grpc.cache_client.pubsub._SubscriptionRequest build() {
grpc.cache_client.pubsub._SubscriptionRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public grpc.cache_client.pubsub._SubscriptionRequest buildPartial() {
grpc.cache_client.pubsub._SubscriptionRequest result = new grpc.cache_client.pubsub._SubscriptionRequest(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(grpc.cache_client.pubsub._SubscriptionRequest result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.cacheName_ = cacheName_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.topic_ = topic_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.resumeAtTopicSequenceNumber_ = resumeAtTopicSequenceNumber_;
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof grpc.cache_client.pubsub._SubscriptionRequest) {
return mergeFrom((grpc.cache_client.pubsub._SubscriptionRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(grpc.cache_client.pubsub._SubscriptionRequest other) {
if (other == grpc.cache_client.pubsub._SubscriptionRequest.getDefaultInstance()) return this;
if (!other.getCacheName().isEmpty()) {
cacheName_ = other.cacheName_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getTopic().isEmpty()) {
topic_ = other.topic_;
bitField0_ |= 0x00000002;
onChanged();
}
if (other.getResumeAtTopicSequenceNumber() != 0L) {
setResumeAtTopicSequenceNumber(other.getResumeAtTopicSequenceNumber());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
cacheName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
topic_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 24: {
resumeAtTopicSequenceNumber_ = input.readUInt64();
bitField0_ |= 0x00000004;
break;
} // case 24
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object cacheName_ = "";
/**
*
* Cache namespace for the topic to which you want to subscribe.
*
*
* string cache_name = 1;
* @return The cacheName.
*/
public java.lang.String getCacheName() {
java.lang.Object ref = cacheName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
cacheName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Cache namespace for the topic to which you want to subscribe.
*
*
* string cache_name = 1;
* @return The bytes for cacheName.
*/
public com.google.protobuf.ByteString
getCacheNameBytes() {
java.lang.Object ref = cacheName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
cacheName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Cache namespace for the topic to which you want to subscribe.
*
*
* string cache_name = 1;
* @param value The cacheName to set.
* @return This builder for chaining.
*/
public Builder setCacheName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
cacheName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* Cache namespace for the topic to which you want to subscribe.
*
*
* string cache_name = 1;
* @return This builder for chaining.
*/
public Builder clearCacheName() {
cacheName_ = getDefaultInstance().getCacheName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
* Cache namespace for the topic to which you want to subscribe.
*
*
* string cache_name = 1;
* @param value The bytes for cacheName to set.
* @return This builder for chaining.
*/
public Builder setCacheNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
cacheName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object topic_ = "";
/**
*
* The literal topic name to which you want to subscribe.
*
*
* string topic = 2;
* @return The topic.
*/
public java.lang.String getTopic() {
java.lang.Object ref = topic_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
topic_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The literal topic name to which you want to subscribe.
*
*
* string topic = 2;
* @return The bytes for topic.
*/
public com.google.protobuf.ByteString
getTopicBytes() {
java.lang.Object ref = topic_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
topic_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The literal topic name to which you want to subscribe.
*
*
* string topic = 2;
* @param value The topic to set.
* @return This builder for chaining.
*/
public Builder setTopic(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
topic_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The literal topic name to which you want to subscribe.
*
*
* string topic = 2;
* @return This builder for chaining.
*/
public Builder clearTopic() {
topic_ = getDefaultInstance().getTopic();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
* The literal topic name to which you want to subscribe.
*
*
* string topic = 2;
* @param value The bytes for topic to set.
* @return This builder for chaining.
*/
public Builder setTopicBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
topic_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private long resumeAtTopicSequenceNumber_ ;
/**
*
* --> Providing this is not required. <--
*
* If provided, attempt to reconnect to the topic and replay messages starting from
* the provided sequence number. You may get a discontinuity if some (or all) of the
* messages are not available.
* If not provided (or 0), the subscription will begin with the latest messages.
*
*
* uint64 resume_at_topic_sequence_number = 3;
* @return The resumeAtTopicSequenceNumber.
*/
@java.lang.Override
public long getResumeAtTopicSequenceNumber() {
return resumeAtTopicSequenceNumber_;
}
/**
*
* --> Providing this is not required. <--
*
* If provided, attempt to reconnect to the topic and replay messages starting from
* the provided sequence number. You may get a discontinuity if some (or all) of the
* messages are not available.
* If not provided (or 0), the subscription will begin with the latest messages.
*
*
* uint64 resume_at_topic_sequence_number = 3;
* @param value The resumeAtTopicSequenceNumber to set.
* @return This builder for chaining.
*/
public Builder setResumeAtTopicSequenceNumber(long value) {
resumeAtTopicSequenceNumber_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
* --> Providing this is not required. <--
*
* If provided, attempt to reconnect to the topic and replay messages starting from
* the provided sequence number. You may get a discontinuity if some (or all) of the
* messages are not available.
* If not provided (or 0), the subscription will begin with the latest messages.
*
*
* uint64 resume_at_topic_sequence_number = 3;
* @return This builder for chaining.
*/
public Builder clearResumeAtTopicSequenceNumber() {
bitField0_ = (bitField0_ & ~0x00000004);
resumeAtTopicSequenceNumber_ = 0L;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:cache_client.pubsub._SubscriptionRequest)
}
// @@protoc_insertion_point(class_scope:cache_client.pubsub._SubscriptionRequest)
private static final grpc.cache_client.pubsub._SubscriptionRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new grpc.cache_client.pubsub._SubscriptionRequest();
}
public static grpc.cache_client.pubsub._SubscriptionRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<_SubscriptionRequest>
PARSER = new com.google.protobuf.AbstractParser<_SubscriptionRequest>() {
@java.lang.Override
public _SubscriptionRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser<_SubscriptionRequest> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<_SubscriptionRequest> getParserForType() {
return PARSER;
}
@java.lang.Override
public grpc.cache_client.pubsub._SubscriptionRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy