Inter-Thread communication library confirming to JMS Interface.
- Full JMS API compliance for Queue / Topic clients including timed receive etc
- Automatic message expiry (slow consumers will not affect the performance)
- Automatic resource clean up (Remove the topic if there are no publisher/subscriber etc)
- Include the jar in your project classpath
-
Use the following APIs on Broker class to create
- Queue Sender (BrokerFactory.createSender(QueueName))
- Queue Receiver (BrokerFactory.createReceiver(QueueName))
- Topic Publisher (BrokerFactory.createPublisher(QueueName))
- Topic Subscriber (BrokerFactory.createSubscriber(QueueName))
- Or Take a look at demo project