Package org.activemq.store

Examples of org.activemq.store.TopicMessageStore


    }

    public TopicMessageStore createTopicMessageStore(String destinationName) throws JMSException {
        JournalTopicMessageStore store = (JournalTopicMessageStore) topicMessageStores.get(destinationName);
        if( store == null ) {
            TopicMessageStore checkpointStore = longTermPersistence.createTopicMessageStore(destinationName);
          store = new JournalTopicMessageStore(this, checkpointStore, destinationName);
          topicMessageStores.put(destinationName, store);
        }
        return store;
    }
View Full Code Here

TOP

Related Classes of org.activemq.store.TopicMessageStore

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.