Using Apache ActiveMQ with ML

9
Using Apache ActiveMQ with ML Fernando Ribeiro Senior Solution Architect

Transcript of Using Apache ActiveMQ with ML

Page 1: Using Apache ActiveMQ with ML

Using Apache ActiveMQ with ML

Fernando Ribeiro

Senior Solution Architect

Page 2: Using Apache ActiveMQ with ML

Summary

• Overview

• Samples

– OCaml, OCaml-Java

• References

Page 3: Using Apache ActiveMQ with ML

Overview

• Apache ActiveMQ provides protocol support that can be used in ML

• Message brokers should be preferred over bridges, for example, for application integration

Page 4: Using Apache ActiveMQ with ML

OCaml

• Send to Queue –https://simplesassim.wordpress.com/2015/02/21/how-to-send-a-message-to-an-apache-activemq-queue-with-ocaml/

• Send to Topic –https://simplesassim.wordpress.com/2015/02/22/how-to-send-a-message-to-an-apache-activemq-topic-with-ocaml/

Page 5: Using Apache ActiveMQ with ML

OCaml

• Receive from Queue –https://simplesassim.wordpress.com/2015/02/22/how-to-receive-a-message-from-an-apache-activemq-queue-with-ocaml/

• Receive from Topic –https://simplesassim.wordpress.com/2015/02/22/how-to-receive-a-message-from-an-apache-activemq-topic-with-ocaml/

Page 6: Using Apache ActiveMQ with ML

OCaml-Java

• Send to Queue –https://simplesassim.wordpress.com/2015/02/15/how-to-send-a-message-to-an-apache-activemq-queue-with-ocaml-java/

• Send to Topic –https://simplesassim.wordpress.com/2015/02/15/how-to-send-a-message-to-an-apache-activemq-topic-with-ocaml-java/

Page 7: Using Apache ActiveMQ with ML

OCaml-Java

• Receive from Queue –https://simplesassim.wordpress.com/2015/02/15/how-to-receive-a-message-from-an-apache-activemq-queue-with-ocaml-java/

• Receive from Topic –https://simplesassim.wordpress.com/2015/02/15/how-to-receive-a-message-from-an-apache-activemq-topic-with-ocaml-java/

Page 8: Using Apache ActiveMQ with ML

References

• JBoss A-MQ –http://www.redhat.com/en/technologies/jboss-middleware/amq

• Apache ActiveMQ –http://activemq.apache.org/

• OCaml – http://www.ocaml.org/

• OCaml-Java – http://www.ocamljava.org/

Page 9: Using Apache ActiveMQ with ML