All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.pubsub.v1.StreamingPullResponse Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/pubsub/v1/pubsub.proto

package com.google.pubsub.v1;

/**
 * 
 * Response for the `StreamingPull` method. This response is used to stream
 * messages from the server to the client.
 * 
* * Protobuf type {@code google.pubsub.v1.StreamingPullResponse} */ public final class StreamingPullResponse extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.pubsub.v1.StreamingPullResponse) StreamingPullResponseOrBuilder { private static final long serialVersionUID = 0L; // Use StreamingPullResponse.newBuilder() to construct. private StreamingPullResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private StreamingPullResponse() { receivedMessages_ = java.util.Collections.emptyList(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private StreamingPullResponse( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); 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 (!parseUnknownFieldProto3( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } case 10: { if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { receivedMessages_ = new java.util.ArrayList(); mutable_bitField0_ |= 0x00000001; } receivedMessages_.add( input.readMessage(com.google.pubsub.v1.ReceivedMessage.parser(), extensionRegistry)); break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) { receivedMessages_ = java.util.Collections.unmodifiableList(receivedMessages_); } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.pubsub.v1.PubsubProto.internal_static_google_pubsub_v1_StreamingPullResponse_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.pubsub.v1.PubsubProto.internal_static_google_pubsub_v1_StreamingPullResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.pubsub.v1.StreamingPullResponse.class, com.google.pubsub.v1.StreamingPullResponse.Builder.class); } public static final int RECEIVED_MESSAGES_FIELD_NUMBER = 1; private java.util.List receivedMessages_; /** *
   * Received Pub/Sub messages. This will not be empty.
   * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public java.util.List getReceivedMessagesList() { return receivedMessages_; } /** *
   * Received Pub/Sub messages. This will not be empty.
   * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public java.util.List getReceivedMessagesOrBuilderList() { return receivedMessages_; } /** *
   * Received Pub/Sub messages. This will not be empty.
   * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public int getReceivedMessagesCount() { return receivedMessages_.size(); } /** *
   * Received Pub/Sub messages. This will not be empty.
   * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public com.google.pubsub.v1.ReceivedMessage getReceivedMessages(int index) { return receivedMessages_.get(index); } /** *
   * Received Pub/Sub messages. This will not be empty.
   * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public com.google.pubsub.v1.ReceivedMessageOrBuilder getReceivedMessagesOrBuilder( int index) { return receivedMessages_.get(index); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { for (int i = 0; i < receivedMessages_.size(); i++) { output.writeMessage(1, receivedMessages_.get(i)); } unknownFields.writeTo(output); } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; for (int i = 0; i < receivedMessages_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, receivedMessages_.get(i)); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.google.pubsub.v1.StreamingPullResponse)) { return super.equals(obj); } com.google.pubsub.v1.StreamingPullResponse other = (com.google.pubsub.v1.StreamingPullResponse) obj; boolean result = true; result = result && getReceivedMessagesList() .equals(other.getReceivedMessagesList()); result = result && unknownFields.equals(other.unknownFields); return result; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); if (getReceivedMessagesCount() > 0) { hash = (37 * hash) + RECEIVED_MESSAGES_FIELD_NUMBER; hash = (53 * hash) + getReceivedMessagesList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.google.pubsub.v1.StreamingPullResponse parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.pubsub.v1.StreamingPullResponse parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.pubsub.v1.StreamingPullResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.pubsub.v1.StreamingPullResponse parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.pubsub.v1.StreamingPullResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.pubsub.v1.StreamingPullResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.pubsub.v1.StreamingPullResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.pubsub.v1.StreamingPullResponse 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 com.google.pubsub.v1.StreamingPullResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.google.pubsub.v1.StreamingPullResponse 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 com.google.pubsub.v1.StreamingPullResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.pubsub.v1.StreamingPullResponse parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.google.pubsub.v1.StreamingPullResponse prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } 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; } /** *
   * Response for the `StreamingPull` method. This response is used to stream
   * messages from the server to the client.
   * 
* * Protobuf type {@code google.pubsub.v1.StreamingPullResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.pubsub.v1.StreamingPullResponse) com.google.pubsub.v1.StreamingPullResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.pubsub.v1.PubsubProto.internal_static_google_pubsub_v1_StreamingPullResponse_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.pubsub.v1.PubsubProto.internal_static_google_pubsub_v1_StreamingPullResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.pubsub.v1.StreamingPullResponse.class, com.google.pubsub.v1.StreamingPullResponse.Builder.class); } // Construct using com.google.pubsub.v1.StreamingPullResponse.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getReceivedMessagesFieldBuilder(); } } public Builder clear() { super.clear(); if (receivedMessagesBuilder_ == null) { receivedMessages_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); } else { receivedMessagesBuilder_.clear(); } return this; } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.pubsub.v1.PubsubProto.internal_static_google_pubsub_v1_StreamingPullResponse_descriptor; } public com.google.pubsub.v1.StreamingPullResponse getDefaultInstanceForType() { return com.google.pubsub.v1.StreamingPullResponse.getDefaultInstance(); } public com.google.pubsub.v1.StreamingPullResponse build() { com.google.pubsub.v1.StreamingPullResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } public com.google.pubsub.v1.StreamingPullResponse buildPartial() { com.google.pubsub.v1.StreamingPullResponse result = new com.google.pubsub.v1.StreamingPullResponse(this); int from_bitField0_ = bitField0_; if (receivedMessagesBuilder_ == null) { if (((bitField0_ & 0x00000001) == 0x00000001)) { receivedMessages_ = java.util.Collections.unmodifiableList(receivedMessages_); bitField0_ = (bitField0_ & ~0x00000001); } result.receivedMessages_ = receivedMessages_; } else { result.receivedMessages_ = receivedMessagesBuilder_.build(); } onBuilt(); return result; } public Builder clone() { return (Builder) super.clone(); } public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.setField(field, value); } public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return (Builder) super.clearField(field); } public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return (Builder) super.clearOneof(oneof); } public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return (Builder) super.setRepeatedField(field, index, value); } public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.pubsub.v1.StreamingPullResponse) { return mergeFrom((com.google.pubsub.v1.StreamingPullResponse)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.pubsub.v1.StreamingPullResponse other) { if (other == com.google.pubsub.v1.StreamingPullResponse.getDefaultInstance()) return this; if (receivedMessagesBuilder_ == null) { if (!other.receivedMessages_.isEmpty()) { if (receivedMessages_.isEmpty()) { receivedMessages_ = other.receivedMessages_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureReceivedMessagesIsMutable(); receivedMessages_.addAll(other.receivedMessages_); } onChanged(); } } else { if (!other.receivedMessages_.isEmpty()) { if (receivedMessagesBuilder_.isEmpty()) { receivedMessagesBuilder_.dispose(); receivedMessagesBuilder_ = null; receivedMessages_ = other.receivedMessages_; bitField0_ = (bitField0_ & ~0x00000001); receivedMessagesBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getReceivedMessagesFieldBuilder() : null; } else { receivedMessagesBuilder_.addAllMessages(other.receivedMessages_); } } } this.mergeUnknownFields(other.unknownFields); onChanged(); 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 { com.google.pubsub.v1.StreamingPullResponse parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.google.pubsub.v1.StreamingPullResponse) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.util.List receivedMessages_ = java.util.Collections.emptyList(); private void ensureReceivedMessagesIsMutable() { if (!((bitField0_ & 0x00000001) == 0x00000001)) { receivedMessages_ = new java.util.ArrayList(receivedMessages_); bitField0_ |= 0x00000001; } } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.pubsub.v1.ReceivedMessage, com.google.pubsub.v1.ReceivedMessage.Builder, com.google.pubsub.v1.ReceivedMessageOrBuilder> receivedMessagesBuilder_; /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public java.util.List getReceivedMessagesList() { if (receivedMessagesBuilder_ == null) { return java.util.Collections.unmodifiableList(receivedMessages_); } else { return receivedMessagesBuilder_.getMessageList(); } } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public int getReceivedMessagesCount() { if (receivedMessagesBuilder_ == null) { return receivedMessages_.size(); } else { return receivedMessagesBuilder_.getCount(); } } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public com.google.pubsub.v1.ReceivedMessage getReceivedMessages(int index) { if (receivedMessagesBuilder_ == null) { return receivedMessages_.get(index); } else { return receivedMessagesBuilder_.getMessage(index); } } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public Builder setReceivedMessages( int index, com.google.pubsub.v1.ReceivedMessage value) { if (receivedMessagesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureReceivedMessagesIsMutable(); receivedMessages_.set(index, value); onChanged(); } else { receivedMessagesBuilder_.setMessage(index, value); } return this; } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public Builder setReceivedMessages( int index, com.google.pubsub.v1.ReceivedMessage.Builder builderForValue) { if (receivedMessagesBuilder_ == null) { ensureReceivedMessagesIsMutable(); receivedMessages_.set(index, builderForValue.build()); onChanged(); } else { receivedMessagesBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public Builder addReceivedMessages(com.google.pubsub.v1.ReceivedMessage value) { if (receivedMessagesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureReceivedMessagesIsMutable(); receivedMessages_.add(value); onChanged(); } else { receivedMessagesBuilder_.addMessage(value); } return this; } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public Builder addReceivedMessages( int index, com.google.pubsub.v1.ReceivedMessage value) { if (receivedMessagesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureReceivedMessagesIsMutable(); receivedMessages_.add(index, value); onChanged(); } else { receivedMessagesBuilder_.addMessage(index, value); } return this; } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public Builder addReceivedMessages( com.google.pubsub.v1.ReceivedMessage.Builder builderForValue) { if (receivedMessagesBuilder_ == null) { ensureReceivedMessagesIsMutable(); receivedMessages_.add(builderForValue.build()); onChanged(); } else { receivedMessagesBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public Builder addReceivedMessages( int index, com.google.pubsub.v1.ReceivedMessage.Builder builderForValue) { if (receivedMessagesBuilder_ == null) { ensureReceivedMessagesIsMutable(); receivedMessages_.add(index, builderForValue.build()); onChanged(); } else { receivedMessagesBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public Builder addAllReceivedMessages( java.lang.Iterable values) { if (receivedMessagesBuilder_ == null) { ensureReceivedMessagesIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, receivedMessages_); onChanged(); } else { receivedMessagesBuilder_.addAllMessages(values); } return this; } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public Builder clearReceivedMessages() { if (receivedMessagesBuilder_ == null) { receivedMessages_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); } else { receivedMessagesBuilder_.clear(); } return this; } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public Builder removeReceivedMessages(int index) { if (receivedMessagesBuilder_ == null) { ensureReceivedMessagesIsMutable(); receivedMessages_.remove(index); onChanged(); } else { receivedMessagesBuilder_.remove(index); } return this; } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public com.google.pubsub.v1.ReceivedMessage.Builder getReceivedMessagesBuilder( int index) { return getReceivedMessagesFieldBuilder().getBuilder(index); } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public com.google.pubsub.v1.ReceivedMessageOrBuilder getReceivedMessagesOrBuilder( int index) { if (receivedMessagesBuilder_ == null) { return receivedMessages_.get(index); } else { return receivedMessagesBuilder_.getMessageOrBuilder(index); } } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public java.util.List getReceivedMessagesOrBuilderList() { if (receivedMessagesBuilder_ != null) { return receivedMessagesBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(receivedMessages_); } } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public com.google.pubsub.v1.ReceivedMessage.Builder addReceivedMessagesBuilder() { return getReceivedMessagesFieldBuilder().addBuilder( com.google.pubsub.v1.ReceivedMessage.getDefaultInstance()); } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public com.google.pubsub.v1.ReceivedMessage.Builder addReceivedMessagesBuilder( int index) { return getReceivedMessagesFieldBuilder().addBuilder( index, com.google.pubsub.v1.ReceivedMessage.getDefaultInstance()); } /** *
     * Received Pub/Sub messages. This will not be empty.
     * 
* * repeated .google.pubsub.v1.ReceivedMessage received_messages = 1; */ public java.util.List getReceivedMessagesBuilderList() { return getReceivedMessagesFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.pubsub.v1.ReceivedMessage, com.google.pubsub.v1.ReceivedMessage.Builder, com.google.pubsub.v1.ReceivedMessageOrBuilder> getReceivedMessagesFieldBuilder() { if (receivedMessagesBuilder_ == null) { receivedMessagesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< com.google.pubsub.v1.ReceivedMessage, com.google.pubsub.v1.ReceivedMessage.Builder, com.google.pubsub.v1.ReceivedMessageOrBuilder>( receivedMessages_, ((bitField0_ & 0x00000001) == 0x00000001), getParentForChildren(), isClean()); receivedMessages_ = null; } return receivedMessagesBuilder_; } public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFieldsProto3(unknownFields); } public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.pubsub.v1.StreamingPullResponse) } // @@protoc_insertion_point(class_scope:google.pubsub.v1.StreamingPullResponse) private static final com.google.pubsub.v1.StreamingPullResponse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.pubsub.v1.StreamingPullResponse(); } public static com.google.pubsub.v1.StreamingPullResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { public StreamingPullResponse parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new StreamingPullResponse(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } public com.google.pubsub.v1.StreamingPullResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy