Apache.NMS.ActiveMQ.Transport.Mock.MockTransport.AsyncRequest C# (CSharp) Method

AsyncRequest() public method

public AsyncRequest ( Command command ) : FutureResponse
command Command
return FutureResponse
        public FutureResponse AsyncRequest(Command command)
        {
            FutureResponse response = new FutureResponse();

            // Delegate to the Request method, it doesn't block.
            response.Response = this.Request(command);

            return response;
        }