![JAR search and dependency download from the Maven repository](/logo.png)
arp.repository.ViewCachedRepositorySynchronizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ARP Show documentation
Show all versions of ARP Show documentation
a java development framework with aggregation, repository and process
The newest version!
package arp.repository;
import arp.process.publish.ProcessMessageReceiver;
public class ViewCachedRepositorySynchronizer {
private static ViewCacheUpdateMessageConsumer viewCacheUpdateMessageConsumer;
public static void registerRepository(ViewCachedRepository, ?> repo,
Class> entityType) {
if (viewCacheUpdateMessageConsumer != null) {
viewCacheUpdateMessageConsumer.registerRepository(repo, entityType);
}
}
public static void start(ProcessMessageReceiver receiver) {
viewCacheUpdateMessageConsumer = new ViewCacheUpdateMessageConsumer(
receiver);
viewCacheUpdateMessageConsumer.start();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy