C# Class MassTransit.RabbitMqSendContextExtensions

Datei anzeigen Open project: phatboyg/MassTransit

Public Methods

Method Description
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

Method Details

SetAwaitAck() public static method

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
return void

SetHeader() public static method

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

SetPriority() public static method

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

SetTransportHeader() public static method

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