Skip to content
This repository was archived by the owner on Sep 26, 2023. It is now read-only.

Commit 2542127

Browse files
Updating dependencies, making BatchingSettings/FlowControlSettings stable (#542)
1 parent d4907e6 commit 2542127

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,14 +115,14 @@ subprojects {
115115
grpcNetty: "io.grpc:grpc-netty-shaded:${grpcVersion}",
116116
gson: "com.google.code.gson:gson:2.7",
117117
guava: 'com.google.guava:guava:20.0',
118-
jsr305: 'com.google.code.findbugs:jsr305:3.0.0',
118+
jsr305: 'com.google.code.findbugs:jsr305:3.0.2',
119119
autovalue: 'com.google.auto.value:auto-value:1.2',
120120
threetenbp: 'org.threeten:threetenbp:1.3.3',
121121
httpClient: "com.google.http-client:google-http-client:1.23.0",
122122
auth: "com.google.auth:google-auth-library-oauth2-http:${authVersion}",
123123
authCredentials: "com.google.auth:google-auth-library-credentials:${authVersion}",
124124
commonProtos: "com.google.api.grpc:proto-google-common-protos:${commonProtosVersion}",
125-
apiCommon: "com.google.api:api-common:1.5.0",
125+
apiCommon: "com.google.api:api-common:1.6.0",
126126

127127
// Testing
128128
junit: 'junit:junit:4.11',

gax/src/main/java/com/google/api/gax/batching/BatchingSettings.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
*/
3030
package com.google.api.gax.batching;
3131

32-
import com.google.api.core.BetaApi;
3332
import com.google.api.gax.batching.FlowController.LimitExceededBehavior;
3433
import com.google.auto.value.AutoValue;
3534
import com.google.common.base.Preconditions;
@@ -83,7 +82,6 @@
8382
* can occur if messages are created and added to batching faster than they can be processed. The
8483
* flow control behavior is controlled using FlowControlSettings.
8584
*/
86-
@BetaApi("The surface for batching is not stable yet and may change in the future.")
8785
@AutoValue
8886
public abstract class BatchingSettings {
8987
/** Get the element count threshold to use for batching. */

gax/src/main/java/com/google/api/gax/batching/FlowControlSettings.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,13 @@
2929
*/
3030
package com.google.api.gax.batching;
3131

32-
import com.google.api.core.BetaApi;
3332
import com.google.api.gax.batching.FlowController.FlowControlException;
3433
import com.google.api.gax.batching.FlowController.LimitExceededBehavior;
3534
import com.google.auto.value.AutoValue;
3635
import com.google.common.base.Preconditions;
3736
import javax.annotation.Nullable;
3837

3938
/** Settings for {@link FlowController}. */
40-
@BetaApi("The surface for batching is not stable yet and may change in the future.")
4139
@AutoValue
4240
public abstract class FlowControlSettings {
4341
public static FlowControlSettings getDefaultInstance() {
@@ -77,7 +75,6 @@ public static Builder newBuilder() {
7775
.setLimitExceededBehavior(LimitExceededBehavior.Block);
7876
}
7977

80-
@BetaApi
8178
@AutoValue.Builder
8279
public abstract static class Builder {
8380
public abstract Builder setMaxOutstandingElementCount(Long value);

0 commit comments

Comments
 (0)