We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Support for RabbitMQ and the other MQ based amqp2.0 protocol.
application.conf
bool enabled = false; string host = "127.0.0.1"; string username = "guest"; string password = "guest"; ushort port = 5672; uint timeout = 15000;
string message = "hello world"; AbstractQueue queue = messageQueue(); queue.push("my-queue", cast(ubyte[])message);
string ChannelName = "my-queue"; AbstractQueue queue = messageQueue(); queue.addListener(ChannelName, (ubyte[] message) { string msg = cast(string)message; writeln("Received message: %s", msg); });