public MessageReceiveResultSkeleton(ILogicalEndPointReceiveResult receiveResult)
        {
            if (receiveResult == null)
            {
                throw new ArgumentNullException(nameof(receiveResult));
            }

            _receiveResult = receiveResult;
        }
Ejemplo n.º 2
0
 public static async Task HandleAsync(
     this ILogicalEndPointReceiveResult messageReceiveResult,
     Func <IMessage, EndPointAddress, CancellationToken, Task <(IMessage response, bool handled)> > handler,