Mercurial > hg > Database > Alice
view src/main/java/alice/test/topology/ring/RingTopology.java @ 543:f3f7e256ee03 dispose
add AliceDaemon on paramater
author | Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 03 Aug 2015 20:00:53 +0900 |
parents | aefbe41fcf12 |
children |
line wrap: on
line source
package alice.test.topology.ring; import alice.topology.node.TopologyNode; public class RingTopology { public static void main(String[] args) { RingTopologyConfig conf = new RingTopologyConfig(args); new TopologyNode(conf, new StartRing(conf)); } }