C# Класс MassTransit.BusControlExtensions

Показать файл Открыть проект

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

Метод Описание
Start ( this busControl ) : void

Stop a bus, throwing an exception if the bus does not stop

Stop ( this busControl ) : void

Stop a bus, throwing an exception if the bus does not stop

Stop ( this bus, System.TimeSpan stopTimeout ) : void

Stop a bus, throwing an exception if the bus does not stop in the specified timeout

StopAsync ( this bus, System.TimeSpan stopTimeout ) : Task

Stop a bus, throwing an exception if the bus does not stop in the specified timeout

Описание методов

Start() публичный статический Метод

Stop a bus, throwing an exception if the bus does not stop
public static Start ( this busControl ) : void
busControl this The bus handle
Результат void

Stop() публичный статический Метод

Stop a bus, throwing an exception if the bus does not stop
public static Stop ( this busControl ) : void
busControl this The bus handle
Результат void

Stop() публичный статический Метод

Stop a bus, throwing an exception if the bus does not stop in the specified timeout
public static Stop ( this bus, System.TimeSpan stopTimeout ) : void
bus this The bus handle
stopTimeout System.TimeSpan The wait time before throwing an exception
Результат void

StopAsync() публичный статический Метод

Stop a bus, throwing an exception if the bus does not stop in the specified timeout
public static StopAsync ( this bus, System.TimeSpan stopTimeout ) : Task
bus this The bus handle
stopTimeout System.TimeSpan The wait time before throwing an exception
Результат Task