Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ public void _Private_ExchangeBind(string destination,
bool nowait,
IDictionary<string, object> arguments)
{
_Private_ExchangeBind(destination, source, routingKey,
m_delegate._Private_ExchangeBind(destination, source, routingKey,
nowait, arguments);
}

Expand All @@ -670,7 +670,7 @@ public void _Private_ExchangeDeclare(string exchange,
bool nowait,
IDictionary<string, object> arguments)
{
_Private_ExchangeDeclare(exchange, type, passive,
m_delegate._Private_ExchangeDeclare(exchange, type, passive,
durable, autoDelete, @internal,
nowait, arguments);
}
Expand All @@ -679,7 +679,7 @@ public void _Private_ExchangeDelete(string exchange,
bool ifUnused,
bool nowait)
{
_Private_ExchangeDelete(exchange, ifUnused, nowait);
m_delegate._Private_ExchangeDelete(exchange, ifUnused, nowait);
}

public void _Private_ExchangeUnbind(string destination,
Expand All @@ -698,7 +698,7 @@ public void _Private_QueueBind(string queue,
bool nowait,
IDictionary<string, object> arguments)
{
_Private_QueueBind(queue, exchange, routingKey,
m_delegate._Private_QueueBind(queue, exchange, routingKey,
nowait, arguments);
}

Expand Down