Package org.apache.activemq.store.amq

Examples of org.apache.activemq.store.amq.AMQPersistenceAdapter


    @Override
    protected void setUp() throws Exception {
        // Start an embedded broker up.
        brokerService = new BrokerService();
        AMQPersistenceAdapter adaptor = new AMQPersistenceAdapter();
        adaptor.setIndexBinSize(4096);
        brokerService.setPersistenceAdapter(adaptor);
        brokerService.deleteAllMessages();
       
        // A small max page size makes this issue occur faster.
        PolicyMap policyMap = new PolicyMap();
View Full Code Here

TOP

Related Classes of org.apache.activemq.store.amq.AMQPersistenceAdapter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.