@@ -46,9 +46,9 @@ public static string BasicConsume(this IModel model,
46
46
bool noLocal = false ,
47
47
bool exclusive = false ,
48
48
IDictionary < string , object > arguments = null )
49
- {
50
- return model . BasicConsume ( queue , autoAck , consumerTag , noLocal , exclusive , arguments , consumer ) ;
51
- }
49
+ {
50
+ return model . BasicConsume ( queue , autoAck , consumerTag , noLocal , exclusive , arguments , consumer ) ;
51
+ }
52
52
53
53
/// <summary>Start a Basic content-class consumer.</summary>
54
54
public static string BasicConsume ( this IModel model , string queue , bool autoAck , IBasicConsumer consumer )
@@ -100,9 +100,9 @@ public static void BasicPublish(this IModel model, CachedString exchange, Cached
100
100
/// </summary>
101
101
public static QueueDeclareOk QueueDeclare ( this IModel model , string queue = "" , bool durable = false , bool exclusive = true ,
102
102
bool autoDelete = true , IDictionary < string , object > arguments = null )
103
- {
104
- return model . QueueDeclare ( queue , durable , exclusive , autoDelete , arguments ) ;
105
- }
103
+ {
104
+ return model . QueueDeclare ( queue , durable , exclusive , autoDelete , arguments ) ;
105
+ }
106
106
107
107
/// <summary>
108
108
/// (Extension method) Bind an exchange to an exchange.
@@ -125,18 +125,18 @@ public static void ExchangeBindNoWait(this IModel model, string destination, str
125
125
/// </summary>
126
126
public static void ExchangeDeclare ( this IModel model , string exchange , string type , bool durable = false , bool autoDelete = false ,
127
127
IDictionary < string , object > arguments = null )
128
- {
129
- model . ExchangeDeclare ( exchange , type , durable , autoDelete , arguments ) ;
130
- }
128
+ {
129
+ model . ExchangeDeclare ( exchange , type , durable , autoDelete , arguments ) ;
130
+ }
131
131
132
132
/// <summary>
133
133
/// (Extension method) Like ExchangeDeclare but sets nowait to true.
134
134
/// </summary>
135
135
public static void ExchangeDeclareNoWait ( this IModel model , string exchange , string type , bool durable = false , bool autoDelete = false ,
136
136
IDictionary < string , object > arguments = null )
137
- {
138
- model . ExchangeDeclareNoWait ( exchange , type , durable , autoDelete , arguments ) ;
139
- }
137
+ {
138
+ model . ExchangeDeclareNoWait ( exchange , type , durable , autoDelete , arguments ) ;
139
+ }
140
140
141
141
/// <summary>
142
142
/// (Spec method) Unbinds an exchange.
@@ -145,9 +145,9 @@ public static void ExchangeUnbind(this IModel model, string destination,
145
145
string source ,
146
146
string routingKey ,
147
147
IDictionary < string , object > arguments = null )
148
- {
149
- model . ExchangeUnbind ( destination , source , routingKey , arguments ) ;
150
- }
148
+ {
149
+ model . ExchangeUnbind ( destination , source , routingKey , arguments ) ;
150
+ }
151
151
152
152
/// <summary>
153
153
/// (Spec method) Deletes an exchange.
0 commit comments