com.alibaba.nacos.shaded.io.grpc.stub.AbstractAsyncStub Maven / Gradle / Ivy
/*
* Copyright 2019 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.alibaba.nacos.shaded.io.grpc.stub;
import com.alibaba.nacos.shaded.io.grpc.CallOptions;
import com.alibaba.nacos.shaded.io.grpc.Channel;
import com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls.StubType;
import com.alibaba.nacos.shaded.javax.annotation.CheckReturnValue;
import com.alibaba.nacos.shaded.javax.annotation.concurrent.ThreadSafe;
/**
* Stub implementations for async stubs.
*
* DO NOT MOCK: Customizing options doesn't work properly in mocks. Use InProcessChannelBuilder
* to create a real channel suitable for testing. It is also possible to mock Channel instead.
*
* @since 1.26.0
*/
@ThreadSafe
@CheckReturnValue
public abstract class AbstractAsyncStub> extends AbstractStub {
protected AbstractAsyncStub(Channel channel, CallOptions callOptions) {
super(channel, callOptions);
}
/**
* Returns a new async stub with the given channel for the provided method configurations.
*
* @since 1.26.0
* @param factory the factory to create an async stub
* @param channel the channel that this stub will use to do communications
*/
public static > T newStub(
StubFactory factory, Channel channel) {
return newStub(factory, channel, CallOptions.DEFAULT);
}
/**
* Returns a new async stub with the given channel for the provided method configurations.
*
* @since 1.26.0
* @param factory the factory to create an async stub
* @param channel the channel that this stub will use to do communications
* @param callOptions the runtime call options to be applied to every call on this stub
*/
public static > T newStub(
StubFactory factory, Channel channel, CallOptions callOptions) {
T stub = factory.newStub(
channel, callOptions.withOption(ClientCalls.STUB_TYPE_OPTION, StubType.ASYNC));
assert stub instanceof AbstractAsyncStub
: String.format("Expected AbstractAsyncStub, but got %s.", stub.getClass());
return stub;
}
}