Skip to content

Commit

Permalink
api:stabilize offloadExecutor. (#9931)
Browse files Browse the repository at this point in the history
* api:Stabalize offloadExecutor.

fixes #6279
  • Loading branch information
larry-safran committed Mar 6, 2023
1 parent 56e4ce4 commit 7aa5598
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion api/src/main/java/io/grpc/ManagedChannelBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ public static ManagedChannelBuilder<?> forTarget(String target) {
* @throws UnsupportedOperationException if unsupported
* @since 1.25.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/6279")
public T offloadExecutor(Executor executor) {
throw new UnsupportedOperationException();
}
Expand Down
2 changes: 0 additions & 2 deletions api/src/main/java/io/grpc/NameResolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,6 @@ public ChannelLogger getChannelLogger() {
* @since 1.25.0
*/
@Nullable
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/6279")
public Executor getOffloadExecutor() {
return executor;
}
Expand Down Expand Up @@ -510,7 +509,6 @@ public Builder setChannelLogger(ChannelLogger channelLogger) {
*
* @since 1.25.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/6279")
public Builder setOffloadExecutor(Executor executor) {
this.executor = executor;
return this;
Expand Down

0 comments on commit 7aa5598

Please sign in to comment.