private PickResult(PickResultType pickResultType, Subchannel?subchannel, Status status, Action <CompletionContext>?onComplete) { Type = pickResultType; Subchannel = subchannel; Status = status; _onComplete = onComplete; }
private PickResult(PickResultType pickResultType, Subchannel?subchannel, Status status, ISubchannelCallTracker?subchannelCallTracker) { Type = pickResultType; Subchannel = subchannel; Status = status; SubchannelCallTracker = subchannelCallTracker; }