use of org.mule.runtime.core.internal.util.store.ProvidedPartitionableObjectStoreWrapper in project mule by mulesoft.
the class AbstractAggregator method initEventGroupsObjectStore.
protected void initEventGroupsObjectStore() throws InitialisationException {
try {
if (eventGroupsObjectStore == null) {
// TODO: Delete ProvidedObjectStoreWrapper if not needed when moving this to compatibility
eventGroupsObjectStore = new ProvidedPartitionableObjectStoreWrapper(null, internalEventsGroupsObjectStoreSupplier());
}
eventGroupsObjectStore.open(storePrefix + ".expiredAndDispatchedGroups");
eventGroupsObjectStore.open(storePrefix + ".eventGroups");
} catch (MuleRuntimeException | ObjectStoreException e) {
throw new InitialisationException(e, this);
}
}
Aggregations