Methods.ActorModel.ActorSynchronizationContext.ActorSynchronizationContext C# (CSharp) Метод

ActorSynchronizationContext() публичный Метод

Creates a new exclusive synchronization context, which runs callbacks on either an optional non-null context or else the thread pool.
public ActorSynchronizationContext ( SynchronizationContext subContext = null ) : System
subContext System.Threading.SynchronizationContext The synchronization context that actions will be run on. Defaults to the thread pool when null.
Результат System
        public ActorSynchronizationContext(SynchronizationContext subContext = null)
        {
            this._subContext = subContext ?? new SynchronizationContext();
        }