CacheMessageStore store = new CacheMessageStore(this, longtermStore, createMessageCache(destinationName));
return store;
}
public TopicMessageStore createTopicMessageStore(String destinationName) throws JMSException {
TopicMessageStore longtermStore = longTermPersistence.createTopicMessageStore(destinationName);
CacheTopicMessageStore store = new CacheTopicMessageStore(this, longtermStore, new SimpleMessageCache());
return store;
}