Mercurial > hg > Database > Alice
view src/main/java/alice/test/topology/ring/RingTopology.java @ 655:1c93e82e05c6 default tip
fix timestamp
author | suruga |
---|---|
date | Sat, 17 Feb 2018 00:33:00 +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)); } }