public class ExtDataStoreFactory extends DelegateDataStoreFactory
{
public ExtDataStoreFactory() {
super(
IoCs.processInstance( new InMemoryCounterDataStore() ),
IoCs.processInstance(new InMemoryGaugeDataStore()),
IoCs.processInstance(new PeriodicNodeStatusDataStore()),
IoCs.processInstance( new ExtendedInMemoryPathTrackingDataStore() ));
}