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

Start() public method

public Start ( ) : void
return void
        public override void Start()
        {
            base.Start();
            if (firstStart.CompareAndSet(true, false))
            {
                try
                {
                    next.Oneway(wireFormat.PreferredWireFormatInfo);
                }
                finally
                {
                    wireInfoSentDownLatch.countDown();
                }
            }
        }