You can create an embedded Java broker, yes. Have a look at org.apache.qpid.server.Broker and org.apache.qpid.server.BrokerOptions, and for example how they are used in org.apache.qpid.server.Main.
Robbie On 16 March 2013 20:22, rieman <[email protected]> wrote: > Is it possible to create an embedded Java Broker with Qpid? > > With Apache ActiveMQ, I create an embedded broker in my Java server > application like this: > > BrokerService broker = new BrokerService(); > > // configure the broker > broker.addConnector("tcp://localhost:61616"); > > broker.start(); > > > > -- > View this message in context: > http://qpid.2158936.n2.nabble.com/Embedded-Java-Broker-tp7590064.html > Sent from the Apache Qpid users mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
