Skip to content

Commit

Permalink
api: stabilize retry related 4 APIs: maxRetryAttempts, maxHedgedAttem…
Browse files Browse the repository at this point in the history
…pts, retryBufferSize, perRpcBufferLimit
  • Loading branch information
sanjaypujare committed Oct 25, 2023
1 parent cd810c5 commit 01c2040
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions api/src/main/java/io/grpc/ManagedChannelBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,6 @@ public T keepAliveWithoutCalls(boolean enable) {
* @return this
* @since 1.11.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/3982")
public T maxRetryAttempts(int maxRetryAttempts) {
throw new UnsupportedOperationException();
}
Expand All @@ -437,7 +436,6 @@ public T maxRetryAttempts(int maxRetryAttempts) {
* @return this
* @since 1.11.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/3982")
public T maxHedgedAttempts(int maxHedgedAttempts) {
throw new UnsupportedOperationException();
}
Expand All @@ -455,7 +453,6 @@ public T maxHedgedAttempts(int maxHedgedAttempts) {
* @return this
* @since 1.10.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/3982")
public T retryBufferSize(long bytes) {
throw new UnsupportedOperationException();
}
Expand All @@ -472,7 +469,6 @@ public T retryBufferSize(long bytes) {
* @return this
* @since 1.10.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/3982")
public T perRpcBufferLimit(long bytes) {
throw new UnsupportedOperationException();
}
Expand Down

0 comments on commit 01c2040

Please sign in to comment.