in simplestore/src/main/java/com/uber/simplestore/impl/SimpleStoreFactory.java [102:112]
static List<SimpleStoreImpl> getOpenChildren(String scope) {
List<SimpleStoreImpl> list = new ArrayList<>();
synchronized (namespacesLock) {
for (String key : namespaces.keySet()) {
if (key.startsWith(scope) && !key.equals(scope)) {
list.add(namespaces.get(key));
}
}
}
return list;
}