comparison src/alice/test/topology/aquarium/CheckLocalIndex.java @ 303:6e0a909b4b12

add PingScheduler
author sugi
date Tue, 19 Nov 2013 14:04:57 +0900
parents 84b7eac2ff7d
children
comparison
equal deleted inserted replaced
302:de6d7361b523 303:6e0a909b4b12
20 public void run() { 20 public void run() {
21 @SuppressWarnings("unchecked") 21 @SuppressWarnings("unchecked")
22 List<String> r = list.asClass(List.class); 22 List<String> r = list.asClass(List.class);
23 for (String node : r) { 23 for (String node : r) {
24 if (!node.equals(data.from)) { 24 if (!node.equals(data.from)) {
25 System.out.println(data.from);
25 ods.update(node, data.key, data.getVal()); 26 ods.update(node, data.key, data.getVal());
26 } 27 }
27 } 28 }
28 new CheckLocalIndex(data.key, data.index); 29 new CheckLocalIndex(data.key, data.index);
29 30