Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AMQP + Android libraries

Tags:

android

amqp

Is any amqp libraries for Android?

like image 903
cybergrind Avatar asked Aug 03 '10 16:08

cybergrind


2 Answers

It depends on how well integrated with Android you want it to be.

There's the RabbitMQ Java Client. It should work on Android, but it hasn't been tested for this, and it will almost certainly need some changes.

like image 80
scvalex Avatar answered Nov 15 '22 04:11

scvalex


Currently, the RabbitMQ Java Client only works with AMQP 0-9. If you have an AMQP 1-0 broker it will not work. The Apache Qpid Client works with AMQP 1-0 but uses javax. An alternative is to use an HTTP-AMQP bridge. In other words, a component that translates HTTP requests into AMQP messages. A simple example of such a bridge can be found at https://github.com/profmocs/amqp_http_bridge.

like image 29
Prof Mo Avatar answered Nov 15 '22 04:11

Prof Mo