C# 클래스 Rebus.Bus.Advanced.AsyncHelpers.CustomSynchronizationContext

Synchronization context that can be "pumped" in order to have it execute continuations posted back to it
상속: System.Threading.SynchronizationContext
파일 보기 프로젝트 열기: rebus-org/Rebus

공개 메소드들

메소드 설명
CreateCopy ( ) : SynchronizationContext
CustomSynchronizationContext ( Func task ) : System
Post ( SendOrPostCallback function, object state ) : void
Run ( ) : void

Enqueues the function to be executed and executes all resulting continuations until it is completely done

Send ( SendOrPostCallback d, object state ) : void

메소드 상세

CreateCopy() 공개 메소드

public CreateCopy ( ) : SynchronizationContext
리턴 System.Threading.SynchronizationContext

CustomSynchronizationContext() 공개 메소드

public CustomSynchronizationContext ( Func task ) : System
task Func
리턴 System

Post() 공개 메소드

public Post ( SendOrPostCallback function, object state ) : void
function SendOrPostCallback
state object
리턴 void

Run() 공개 메소드

Enqueues the function to be executed and executes all resulting continuations until it is completely done
public Run ( ) : void
리턴 void

Send() 공개 메소드

public Send ( SendOrPostCallback d, object state ) : void
d SendOrPostCallback
state object
리턴 void