Akka.Dispatch.ConcurrentQueueMailbox.Schedule C# (CSharp) Method

Schedule() protected method

Schedules this instance.
protected Schedule ( ) : void
return void
        protected override void Schedule()
        {
            //only schedule if we idle
            if (Interlocked.Exchange(ref status, MailboxStatus.Busy) == MailboxStatus.Idle)
            {
                dispatcher.Schedule(Run);
            }
        }