Apache.NMS.ActiveMQ.Transport.WireFormatNegotiator.Oneway C# (CSharp) Метод

Oneway() публичный Метод

public Oneway ( Command command ) : void
command Command
Результат 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);
        }