This repository was archived by the owner on Sep 26, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +2
-7
lines changed
gax/src/main/java/com/google/api/gax/batching Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Original file line number Diff line number Diff 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' ,
Original file line number Diff line number Diff line change 2929 */
3030package com .google .api .gax .batching ;
3131
32- import com .google .api .core .BetaApi ;
3332import com .google .api .gax .batching .FlowController .LimitExceededBehavior ;
3433import com .google .auto .value .AutoValue ;
3534import com .google .common .base .Preconditions ;
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
8886public abstract class BatchingSettings {
8987 /** Get the element count threshold to use for batching. */
Original file line number Diff line number Diff line change 2929 */
3030package com .google .api .gax .batching ;
3131
32- import com .google .api .core .BetaApi ;
3332import com .google .api .gax .batching .FlowController .FlowControlException ;
3433import com .google .api .gax .batching .FlowController .LimitExceededBehavior ;
3534import com .google .auto .value .AutoValue ;
3635import com .google .common .base .Preconditions ;
3736import 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
4240public 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 );
You can’t perform that action at this time.
0 commit comments