This repository was archived by the owner on May 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathFeatureFlagsOrBuilder.java
More file actions
164 lines (152 loc) · 3.75 KB
/
Copy pathFeatureFlagsOrBuilder.java
File metadata and controls
164 lines (152 loc) · 3.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
* Copyright 2025 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/feature_flags.proto
// Protobuf Java Version: 3.25.8
package com.google.bigtable.v2;
public interface FeatureFlagsOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.bigtable.v2.FeatureFlags)
com.google.protobuf.MessageOrBuilder {
/**
*
*
* <pre>
* Notify the server that the client supports reverse scans. The server will
* reject ReadRowsRequests with the reverse bit set when this is absent.
* </pre>
*
* <code>bool reverse_scans = 1;</code>
*
* @return The reverseScans.
*/
boolean getReverseScans();
/**
*
*
* <pre>
* Notify the server that the client enables batch write flow control by
* requesting RateLimitInfo from MutateRowsResponse. Due to technical reasons,
* this disables partial retries.
* </pre>
*
* <code>bool mutate_rows_rate_limit = 3;</code>
*
* @return The mutateRowsRateLimit.
*/
boolean getMutateRowsRateLimit();
/**
*
*
* <pre>
* Notify the server that the client enables batch write flow control by
* requesting RateLimitInfo from MutateRowsResponse. With partial retries
* enabled.
* </pre>
*
* <code>bool mutate_rows_rate_limit2 = 5;</code>
*
* @return The mutateRowsRateLimit2.
*/
boolean getMutateRowsRateLimit2();
/**
*
*
* <pre>
* Notify the server that the client supports the last_scanned_row field
* in ReadRowsResponse for long-running scans.
* </pre>
*
* <code>bool last_scanned_row_responses = 4;</code>
*
* @return The lastScannedRowResponses.
*/
boolean getLastScannedRowResponses();
/**
*
*
* <pre>
* Notify the server that the client supports using encoded routing cookie
* strings to retry requests with.
* </pre>
*
* <code>bool routing_cookie = 6;</code>
*
* @return The routingCookie.
*/
boolean getRoutingCookie();
/**
*
*
* <pre>
* Notify the server that the client supports using retry info back off
* durations to retry requests with.
* </pre>
*
* <code>bool retry_info = 7;</code>
*
* @return The retryInfo.
*/
boolean getRetryInfo();
/**
*
*
* <pre>
* Notify the server that the client has client side metrics enabled.
* </pre>
*
* <code>bool client_side_metrics_enabled = 8;</code>
*
* @return The clientSideMetricsEnabled.
*/
boolean getClientSideMetricsEnabled();
/**
*
*
* <pre>
* Notify the server that the client using Traffic Director endpoint.
* </pre>
*
* <code>bool traffic_director_enabled = 9;</code>
*
* @return The trafficDirectorEnabled.
*/
boolean getTrafficDirectorEnabled();
/**
*
*
* <pre>
* Notify the server that the client explicitly opted in for Direct Access.
* </pre>
*
* <code>bool direct_access_requested = 10;</code>
*
* @return The directAccessRequested.
*/
boolean getDirectAccessRequested();
/**
*
*
* <pre>
* If the client can support using BigtablePeerInfo.
* </pre>
*
* <code>bool peer_info = 11;</code>
*
* @return The peerInfo.
*/
boolean getPeerInfo();
}