Apache.NMS.ActiveMQ.Transport.WireFormatNegotiator.Oneway C# (CSharp) Method

Oneway() public method

public Oneway ( Command command ) : void
command Command
return void
        public override void Oneway(Command command)
        {
            if (!readyCountDownLatch.await(negotiateTimeout))
                throw new IOException("Wire format negotiation timeout: peer did not send his wire format.");
            next.Oneway(command);
        }