public MessageReceiveResultSkeleton(ILogicalEndPointReceiveResult receiveResult) { if (receiveResult == null) { throw new ArgumentNullException(nameof(receiveResult)); } _receiveResult = receiveResult; }
public static async Task HandleAsync( this ILogicalEndPointReceiveResult messageReceiveResult, Func <IMessage, EndPointAddress, CancellationToken, Task <(IMessage response, bool handled)> > handler,