does anyone know how to enable RabbitMQ Flow Control in C# ? I tried something like this:
channel = connection.CreateModel();
channel.ChannelFlow(true);
channel.FlowControl += new RabbitMQ.Client.Events.FlowControlEventHandler(channel_FlowControl);
Basically, i would expect the "channel_FlowControl" Event to be triggered when the RabbitMQ connection goes into FlowControl Mode - but somehow that doesn't happen.
Anyone knows how i hae to handle it correctly?
Thanks in advance