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

Schedule() public method

Schedules the specified run.
public Schedule ( System.Action run ) : void
run System.Action The run.
return void
        public override void Schedule(Action run)
        {
            _dedicatedThreadPool.QueueUserWorkItem(run);
        }