Versions Compared

Key

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

...

Read messages from the MQTT broker installed on the same host as the Camel router:

Code Block
titleCar.java
from("paho:some/queue").
  to("mock:test");

Read messages from the remote MQTT broker: 

Car.java
Code Block
title
from("paho:some/queue?brokerUrl=tcp://iot.eclipse.org:1883").
  to("mock:test");

Send message to the MQTT broker:

Car.java
Code Block
title
from("direct:test").
  to("paho:some/target/queue");

...