Skip to content

Commit 7027b10

Browse files
author
Emile Joubert
committed
Update wikipages
1 parent cdf9651 commit 7027b10

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/wikipages/data.ApiGen.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -359,10 +359,10 @@ of the interaction style of the command. The [code AmqpNowaitArgument]
359359
attribute should be used for this purpose:
360360

361361
@code java
362-
void ExchangeDelete(string exchange,
363-
bool ifUnused,
364-
[AmqpNowaitArgument(null)]
365-
bool nowait);
362+
void _Private_ExchangeDelete(string exchange,
363+
bool ifUnused,
364+
[AmqpNowaitArgument(null)]
365+
bool nowait);
366366

367367
When [code AmqpNowaitArgument] decorates a particular parameter, if
368368
that parameter is true at runtime, the generated code will send the

docs/wikipages/data.ApiOverview.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ exchange and a queue, then binds them together.
186186
@code java
187187
channel.ExchangeDeclare(exchangeName, ExchangeType.Direct);
188188
channel.QueueDeclare(queueName, false, false, false, null);
189-
channel.QueueBind(queueName, exchangeName, routingKey, false, null);
189+
channel.QueueBind(queueName, exchangeName, routingKey, null);
190190

191191
This will actively declare the following objects:
192192

0 commit comments

Comments
 (0)