Versions Compared

Key

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

...

Code Block
titleCar.java
from("paho:some/queue").

  to("mock:test");

Read messages from the remote MQTT broker: 

Code Block
titleCar.java
from("paho:some/queue?brokerUrl=tcp://iot.eclipse.org:1883").

  to("mock:test");

Send message to the MQTT broker:

Code Block
titleCar.java
from("direct:test").

  to("paho:some/target/queue");

...