package fi.vtt.simantics.procore.internal; import org.simantics.db.service.ClusterCollectorPolicy; import org.simantics.db.service.ClusterCollectorPolicy.CollectorCluster; interface ClusterCollectorSupport { public int getCurrentSize(); public Iterable getResidentClusters(); public void release(CollectorCluster id); public long getClusterSize(CollectorCluster id); public void setPolicy(ClusterCollectorPolicy policy); }