Mercurial > hg > Database > Alice
view src/main/java/alice/test/topology/aquarium/fx/StartAquariumFX.java @ 390:e29cf08ad1f3 multicast
add CalculatePosition CodeSegment
author | sugi |
---|---|
date | Mon, 16 Jun 2014 21:45:43 +0900 |
parents | e58f5f74748e |
children | aefbe41fcf12 |
line wrap: on
line source
package alice.test.topology.aquarium.fx; import alice.topology.node.TopologyNode; import alice.topology.node.TopologyNodeConfig; public class StartAquariumFX { public static void main(String args[]){ TopologyNodeConfig conf = new TopologyNodeConfig(args); if (conf.getManagerHostName() !=null){ new TopologyNode(conf, new StartCodeSegment()); } else { StartCodeSegment cs = new StartCodeSegment(); cs.ods.put("host", "local0"); cs.execute(); } } }