NServiceBus.Testing.TestableInvokeHandlerContext.HandleCurrentMessageLater C# (CSharp) Method

HandleCurrentMessageLater() public method

Moves the message being handled to the back of the list of available messages so it can be handled later.
public HandleCurrentMessageLater ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
        public virtual Task HandleCurrentMessageLater()
        {
            HandleCurrentMessageLaterWasCalled = true;
            return Task.FromResult(0);
        }