dart_amqp
dart_amqp copied to clipboard
Dart AMQP client implementing protocol version 0.9.1
I want to bind a fanout exchange to a direct exchange.
Shouldn't it be dart_amqp?
I want listen a topic from my app. Can i do that?
Are you guys having any plans to implement heartbeats? This is pretty necessary while we keep having lots of zombie connections on the server side!
```dart // test.dart var client = new amqp.Client(settings: amqp.ConnectionSettings( host : 'localhost', port : 5672, maxConnectionAttempts: 99999, // -- "infinite" retries because setting this to 0 or -1 isn't supported...
Hi! RabbitMQ requires separate "qos" settings for each new consumer. (global = false) https://www.rabbitmq.com/consumer-prefetch.html#overview The abstract class "Channel" in the "qos" function is missing the "global" parameter. This will fix...
web pltform
hello,i was trying this package on mobile platforms (android /ios) and it's work fine. but what about web. I think add web support it's will be a big contribution
Implements #35
Hi, Is it possible to expose the socket in ClientImpl to handle errors? At present, if the client disconnects after establishing a connection, there is no way of knowing. If...