Contour.Transport.RabbitMQ.Internal.RabbitBus.Start C# (CSharp) Method

Start() public method

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

            this.Restart(waitForReadiness);
        }