Grpc.Net.Client.Balancer.SubchannelPicker
Base type for picking a subchannel. A SubchannelPicker is responsible for picking
a ready Subchannel that gRPC calls will use.
Load balancers implement SubchannelPicker with their own balancing logic to determine which subchannel is returned for a call.
Note: Experimental API that can change or be removed without any prior notice.
namespace Grpc.Net.Client.Balancer
{
public abstract class SubchannelPicker
{
public abstract PickResult Pick(PickContext context);
protected SubchannelPicker();
}
}