Apache.NMS.ActiveMQ.Transport.MutexTransport.Request C# (CSharp) Method

Request() public method

public Request ( Command command, System.TimeSpan timeout ) : Response
command Command
timeout System.TimeSpan
return Apache.NMS.ActiveMQ.Commands.Response
        public override Response Request(Command command, TimeSpan timeout)
        {
            lock(transmissionLock)
            {
                return base.Request(command, timeout);
            }
        }