Contour.Transport.RabbitMQ.Internal.RabbitBus.Start C# (CSharp) 메소드

Start() 공개 메소드

The start.
public Start ( bool waitForReadiness = true ) : void
waitForReadiness bool The wait for readiness.
리턴 void
        public override void Start(bool waitForReadiness = true)
        {
            if (this.IsStarted || this.IsShuttingDown)
            {
                return;
            }

            this.Restart(waitForReadiness);
        }