C# Class NSoft.NFramework.Parallelism.TaskSchedulerSynchronizationContext

TaskScheduler에 의해 동기화 컨텍스트에 Post, Send 작업을 스케쥴링합니다.
Inheritance: System.Threading.SynchronizationContext
显示文件 Open project: debop/NFramework

Public Methods

Method Description
Post ( SendOrPostCallback callback, object state ) : void

파생 클래스에서 재정의될 때 비동기 메시지를 동기화 컨텍스트로 디스패치합니다.

Send ( SendOrPostCallback callback, object state ) : void

파생 클래스에서 재정의될 때 동기 메시지를 동기화 컨텍스트로 디스패치합니다.

TaskSchedulerSynchronizationContext ( TaskScheduler scheduler ) : System.Threading

생성자

Method Details

Post() public method

파생 클래스에서 재정의될 때 비동기 메시지를 동기화 컨텍스트로 디스패치합니다.
public Post ( SendOrPostCallback callback, object state ) : void
callback SendOrPostCallback 호출할 대리자입니다.
state object 대리자에 전달된 개체입니다.
return void

Send() public method

파생 클래스에서 재정의될 때 동기 메시지를 동기화 컨텍스트로 디스패치합니다.
public Send ( SendOrPostCallback callback, object state ) : void
callback SendOrPostCallback 호출할 대리자입니다.
state object 대리자에 전달된 개체입니다.
return void

TaskSchedulerSynchronizationContext() public method

생성자
public TaskSchedulerSynchronizationContext ( TaskScheduler scheduler ) : System.Threading
scheduler System.Threading.Tasks.TaskScheduler 작업 스케쥴러
return System.Threading