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

Detach() public method

public Detach ( ActorCell cell ) : void
cell Akka.Actor.ActorCell
return void
        public override void Detach(ActorCell cell)
        {
            //shut down the dedicated thread pool
            _dedicatedThreadPool.Dispose();
        }
    }