use of org.apache.activemq.artemis.jms.persistence.impl.journal.JMSJournalStorageManagerImpl in project activemq-artemis by apache.
the class StorageManagerTestBase method createJMSStorage.
/**
* @throws Exception
*/
protected void createJMSStorage() throws Exception {
jmsJournal = new JMSJournalStorageManagerImpl(null, new TimeAndCounterIDGenerator(), createDefaultInVMConfig(), null);
addActiveMQComponent(jmsJournal);
jmsJournal.start();
jmsJournal.load();
}
Aggregations