<PackageReference Include="Grpc.Net.Client" Version="2.76.0-pre1" />

Grpc.Net.Client.Balancer.PickResultType

public enum PickResultType
The PickResult type.

Note: Experimental API that can change or be removed without any prior notice.

PickResult with a Subchannel.

Drop = 3

PickResult with an immediate failure. All gRPC calls will fail, regardless of what IsWaitForReady is set to, and retry logic is bypassed.

Fail = 2

PickResult with a connectivity error. gRPC calls fail unless IsWaitForReady is set to true. If IsWaitForReady is set to true then gRPC calls will queue.

Queue = 1

PickResult that was unable to resolve success or failure. This result will queue gRPC calls until a non-queue result is available.