Package org.apache.activemq.store.kahadb

Examples of org.apache.activemq.store.kahadb.TempKahaDBStore$KahaDBMessageStore


    protected void configureBroker(BrokerService answer,String uri) throws Exception {
        File dataFileDir = new File("target/test-amq-data/perfTest/temp-amqdb");
        dataFileDir.mkdirs();
        answer.setDeleteAllMessagesOnStartup(true);
              
         TempKahaDBStore adaptor = new TempKahaDBStore();
         adaptor.setDirectory(dataFileDir);
        
       
        answer.setDataDirectoryFile(dataFileDir);
        answer.setPersistenceAdapter(adaptor);
        answer.addConnector(uri);
View Full Code Here


    protected void configureBroker(BrokerService answer,String uri) throws Exception {
        File dataFileDir = new File("target/test-amq-data/perfTest/temp-amqdb");
        dataFileDir.mkdirs();
        answer.setDeleteAllMessagesOnStartup(true);
              
         TempKahaDBStore adaptor = new TempKahaDBStore();
         adaptor.setDirectory(dataFileDir);
        
       
        answer.setDataDirectoryFile(dataFileDir);
        answer.setPersistenceAdapter(adaptor);
        answer.addConnector(uri);
View Full Code Here

TOP

Related Classes of org.apache.activemq.store.kahadb.TempKahaDBStore$KahaDBMessageStore

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.