Skip to content

Commit 7aa5598

Browse files
authored
api:stabilize offloadExecutor. (#9931)
* api:Stabalize offloadExecutor. fixes #6279
1 parent 56e4ce4 commit 7aa5598

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

api/src/main/java/io/grpc/ManagedChannelBuilder.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ public static ManagedChannelBuilder<?> forTarget(String target) {
119119
* @throws UnsupportedOperationException if unsupported
120120
* @since 1.25.0
121121
*/
122-
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/6279")
123122
public T offloadExecutor(Executor executor) {
124123
throw new UnsupportedOperationException();
125124
}

api/src/main/java/io/grpc/NameResolver.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,6 @@ public ChannelLogger getChannelLogger() {
366366
* @since 1.25.0
367367
*/
368368
@Nullable
369-
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/6279")
370369
public Executor getOffloadExecutor() {
371370
return executor;
372371
}
@@ -510,7 +509,6 @@ public Builder setChannelLogger(ChannelLogger channelLogger) {
510509
*
511510
* @since 1.25.0
512511
*/
513-
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/6279")
514512
public Builder setOffloadExecutor(Executor executor) {
515513
this.executor = executor;
516514
return this;

0 commit comments

Comments
 (0)