C# 클래스 MassTransit.RabbitMqSendContextExtensions

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

공개 메소드들

메소드 설명
SetAwaitAck ( this context, bool awaitAck ) : void

Sets whether the send should wait for the ack from the broker, or if it should return immediately after the message is sent by the client.

SetHeader ( this basicProperties, string key, object value ) : void
SetPriority ( this context, byte priority ) : void

Sets the priority of a message sent to the broker

SetTransportHeader ( this context, string key, object value ) : void

메소드 상세

SetAwaitAck() 공개 정적인 메소드

Sets whether the send should wait for the ack from the broker, or if it should return immediately after the message is sent by the client.
public static SetAwaitAck ( this context, bool awaitAck ) : void
context this
awaitAck bool
리턴 void

SetHeader() 공개 정적인 메소드

public static SetHeader ( this basicProperties, string key, object value ) : void
basicProperties this
key string
value object
리턴 void

SetPriority() 공개 정적인 메소드

Sets the priority of a message sent to the broker
public static SetPriority ( this context, byte priority ) : void
context this
priority byte
리턴 void

SetTransportHeader() 공개 정적인 메소드

public static SetTransportHeader ( this context, string key, object value ) : void
context this
key string
value object
리턴 void