C# Class MassTransit.RabbitMqSendContextExtensions

Afficher le fichier Open project: phatboyg/MassTransit

Méthodes publiques

Méthode 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 méthode

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
Résultat void

SetHeader() public static méthode

public static SetHeader ( this basicProperties, string key, object value ) : void
basicProperties this
key string
value object
Résultat void

SetPriority() public static méthode

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

SetTransportHeader() public static méthode

public static SetTransportHeader ( this context, string key, object value ) : void
context this
key string
value object
Résultat void