Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In the latter case the batch of strings will be send to IronMQ as one request, creating one message pr. element in the array.

 

Consumer example

Consume 50 messages pr. poll from the queue 'testqueue' on aws eu, and save the messages to files.

Code Block
languagejava
from("ironmq:testqueue?ironMQCloud=mq-aws-eu-west-1.iron.io&projectId=myIronMQProjectid&token=myIronMQToken&maxMessagesPerPoll=50")
  .to("file:somefolder");

...

Producer example

Dequeue from activemq jms and enqueue the messages on IronMQ.

...