C# 클래스 NServiceBus.ImmediateDispatchOptionExtensions

Provides ways for the end user to request immediate dispatch of their messages.
파일 보기 프로젝트 열기: Particular/NServiceBus

공개 메소드들

메소드 설명
RequireImmediateDispatch ( this options ) : void

Requests the messsage to be dispatched to the transport immediately. This means that the message is ACKed by the transport as soon as the call to send returns. The message will not be enlisted in any current receive transaction even if the transport support it.

RequiredImmediateDispatch ( this options ) : bool

Returns whether immediate dispatch has been request by RequireImmediateDispatch or not.

메소드 상세

RequireImmediateDispatch() 공개 정적인 메소드

Requests the messsage to be dispatched to the transport immediately. This means that the message is ACKed by the transport as soon as the call to send returns. The message will not be enlisted in any current receive transaction even if the transport support it.
public static RequireImmediateDispatch ( this options ) : void
options this The options being extended.
리턴 void

RequiredImmediateDispatch() 공개 정적인 메소드

Returns whether immediate dispatch has been request by RequireImmediateDispatch or not.
public static RequiredImmediateDispatch ( this options ) : bool
options this The options being extended.
리턴 bool