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
Показать файл Открыть проект

Открытые методы

Метод Описание
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