use of org.apache.activemq.artemis.core.paging.impl.PagingManagerImpl in project activemq-artemis by apache.
the class ReplicationTest method createPageManager.
protected PagingManager createPageManager(final StorageManager storageManager, final Configuration configuration, final ExecutorFactory executorFactory, final HierarchicalRepository<AddressSettings> addressSettingsRepository) throws Exception {
PagingManager paging = new PagingManagerImpl(new PagingStoreFactoryNIO(storageManager, configuration.getPagingLocation(), 1000, null, executorFactory, false, null), addressSettingsRepository);
paging.start();
return paging;
}
Aggregations