C# Class IronFramework.TestCommon.ThreadPoolSyncContext

This is an implementation of SynchronizationContext that not only queues things on the thread pool for later work, but also ensures that it sets itself back as the synchronization context (something that the default implementatation of SynchronizationContext does not do).
Inheritance: System.Threading.SynchronizationContext
Afficher le fichier Open project: megadotnet/ironframework

Méthodes publiques

Méthode Description
Post ( SendOrPostCallback d, object state ) : void
Send ( SendOrPostCallback d, object state ) : void

Method Details

Post() public méthode

public Post ( SendOrPostCallback d, object state ) : void
d SendOrPostCallback
state object
Résultat void

Send() public méthode

public Send ( SendOrPostCallback d, object state ) : void
d SendOrPostCallback
state object
Résultat void