org.apache.activemq.openwire.codec.OpenWireFormatFactory

Here are the examples of the java api class org.apache.activemq.openwire.codec.OpenWireFormatFactory taken from open source projects.

1. OpenWireInteropTestSupport#setUp()

Project: activemq-openwire
File: OpenWireInteropTestSupport.java
@Before
public void setUp() throws Exception {
    brokerService = createBroker();
    brokerService.start();
    brokerService.waitUntilStarted();
    factory = new OpenWireFormatFactory();
    factory.setVersion(getOpenWireVersion());
    factory.setCacheEnabled(false);
    factory.setTightEncodingEnabled(isTightEncodingEnabled());
    wireFormat = factory.createWireFormat();
}