com.google.bigtable.v2.ReadChangeStreamResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-bigtable-v2 Show documentation
Show all versions of proto-google-cloud-bigtable-v2 Show documentation
PROTO library for proto-google-cloud-bigtable-v2
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/bigtable/v2/bigtable.proto
// Protobuf Java Version: 3.25.4
package com.google.bigtable.v2;
public interface ReadChangeStreamResponseOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.bigtable.v2.ReadChangeStreamResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* A mutation to the partition.
*
*
* .google.bigtable.v2.ReadChangeStreamResponse.DataChange data_change = 1;
*
* @return Whether the dataChange field is set.
*/
boolean hasDataChange();
/**
*
*
*
* A mutation to the partition.
*
*
* .google.bigtable.v2.ReadChangeStreamResponse.DataChange data_change = 1;
*
* @return The dataChange.
*/
com.google.bigtable.v2.ReadChangeStreamResponse.DataChange getDataChange();
/**
*
*
*
* A mutation to the partition.
*
*
* .google.bigtable.v2.ReadChangeStreamResponse.DataChange data_change = 1;
*/
com.google.bigtable.v2.ReadChangeStreamResponse.DataChangeOrBuilder getDataChangeOrBuilder();
/**
*
*
*
* A periodic heartbeat message.
*
*
* .google.bigtable.v2.ReadChangeStreamResponse.Heartbeat heartbeat = 2;
*
* @return Whether the heartbeat field is set.
*/
boolean hasHeartbeat();
/**
*
*
*
* A periodic heartbeat message.
*
*
* .google.bigtable.v2.ReadChangeStreamResponse.Heartbeat heartbeat = 2;
*
* @return The heartbeat.
*/
com.google.bigtable.v2.ReadChangeStreamResponse.Heartbeat getHeartbeat();
/**
*
*
*
* A periodic heartbeat message.
*
*
* .google.bigtable.v2.ReadChangeStreamResponse.Heartbeat heartbeat = 2;
*/
com.google.bigtable.v2.ReadChangeStreamResponse.HeartbeatOrBuilder getHeartbeatOrBuilder();
/**
*
*
*
* An indication that the stream should be closed.
*
*
* .google.bigtable.v2.ReadChangeStreamResponse.CloseStream close_stream = 3;
*
* @return Whether the closeStream field is set.
*/
boolean hasCloseStream();
/**
*
*
*
* An indication that the stream should be closed.
*
*
* .google.bigtable.v2.ReadChangeStreamResponse.CloseStream close_stream = 3;
*
* @return The closeStream.
*/
com.google.bigtable.v2.ReadChangeStreamResponse.CloseStream getCloseStream();
/**
*
*
*
* An indication that the stream should be closed.
*
*
* .google.bigtable.v2.ReadChangeStreamResponse.CloseStream close_stream = 3;
*/
com.google.bigtable.v2.ReadChangeStreamResponse.CloseStreamOrBuilder getCloseStreamOrBuilder();
com.google.bigtable.v2.ReadChangeStreamResponse.StreamRecordCase getStreamRecordCase();
}