Re: [ANNOUNCE] Apache Artemis 2.0.0

2017-03-22 Thread Jamie G.
Congratulations on the release of Apache ActiveMQ Artemis 2.0.0! On Wed, Mar 22, 2017 at 10:33 AM, Martyn Taylor wrote: > All, > > I am extremely pleased to announce the release of Apache Artemis 2.0.0. > > This 2.0.0 release represents a major milestone for Apache Artemis and > contains a bunch

Re: how to unsubscribe a frame using apache apollo?

2015-04-20 Thread Jamie G.
Here's a brief sample code: Stomp stomp = new Stomp("localhost", 61613); Future future = stomp.connectFuture(); FutureConnection connection = future.await(); AsciiBuffer id = connection.nextId(); StompFrame unsubscribe = new StompFrame(UNSUBSCRIBE); unsubscribe.addHeader(ID, id); Future unsu