C# 클래스 MassTransit.BusControlExtensions

파일 보기 프로젝트 열기: MassTransit/MassTransit

공개 메소드들

메소드 설명
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