메소드 | 설명 | |
---|---|---|
FiberSchedulerSynchronizationContext ( |
Initializes a new instance of the SpicyPixel.Threading.FiberSchedulerSynchronizationContext class.
|
|
Post ( SendOrPostCallback d, object state ) : void |
Dispatches an asynchronous message to a synchronization context (the FiberScheduler). The scheduler may choose to inline the callback if the Post is executed from the scheduler thread. |
|
Send ( SendOrPostCallback d, object state ) : void |
Dispatches an synchronous message to a synchronization context (the FiberScheduler). The callback is always inlined if Send is executed from the scheduler thread regardless of any scheduler specific inline settings. Because inlining always occurs when on the scheduler thread, the caller must manage stack depth. |
public FiberSchedulerSynchronizationContext ( |
||
scheduler | /// The scheduler to send or post callbacks to. /// | |
리턴 | System |
public Post ( SendOrPostCallback d, object state ) : void | ||
d | SendOrPostCallback | /// Callback to invoke /// |
state | object | /// State to pass /// |
리턴 | void |
public Send ( SendOrPostCallback d, object state ) : void | ||
d | SendOrPostCallback | /// Callback to invoke /// |
state | object | /// State to pass /// |
리턴 | void |