api:stabilize offloadExecutor. (#9931)

* api:Stabalize offloadExecutor.

fixes #6279
This commit is contained in:
Larry Safran 2023-03-06 20:49:37 +00:00 committed by GitHub
parent 56e4ce49bd
commit 7aa5598dc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View File

@ -119,7 +119,6 @@ public abstract class ManagedChannelBuilder<T extends ManagedChannelBuilder<T>>
* @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();
}

View File

@ -366,7 +366,6 @@ public abstract class NameResolver {
* @since 1.25.0
*/
@Nullable
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/6279")
public Executor getOffloadExecutor() {
return executor;
}
@ -510,7 +509,6 @@ public abstract class NameResolver {
*
* @since 1.25.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/6279")
public Builder setOffloadExecutor(Executor executor) {
this.executor = executor;
return this;