comparison src/alice/test/topology/aquarium/fx/OtherNode.java @ 18:4e5507afb41f

"MAXSIZE" change automatically
author e095732
date Mon, 04 Feb 2013 01:23:24 +0900
parents e027d228c455
children
comparison
equal deleted inserted replaced
17:9bacc8b30c4b 18:4e5507afb41f
16 16
17 @Override 17 @Override
18 public void run() { 18 public void run() {
19 ods.put("local", "list", new RoutingTable("parent")); 19 ods.put("local", "list", new RoutingTable("parent"));
20 new RegistRoutingTable(); 20 new RegistRoutingTable();
21 ods.put("local", "MAXSIZE", 800);
21 ods.put("parent", "member", "ADD_MEM"); 22 ods.put("parent", "member", "ADD_MEM");
22 23 ods.put("parent", "CHILD", "ADD");
23 int startX = data1.asInteger() * data2.asInteger(); 24 int startX = data1.asInteger() * data2.asInteger();
24 ods.put("local", "startX", startX); 25 ods.put("local", "startX", startX);
25 26 new SendMessage();
27 new Share("MAXSIZE");
26 Aquarium aqua = new Aquarium(); 28 Aquarium aqua = new Aquarium();
27 aqua.run(); 29 aqua.run();
28 } 30 }
29 31
30 } 32 }