Mercurial > hg > Database > Alice
view src/main/java/alice/test/topology/ring/StartRing.java @ 345:8f71c3e6f11d
Change directory structure Maven standard
author | sugi |
---|---|
date | Wed, 16 Apr 2014 18:26:07 +0900 |
parents | |
children | aefbe41fcf12 |
line wrap: on
line source
package alice.test.topology.ring; import alice.codesegment.CodeSegment; public class StartRing extends CodeSegment { private RingTopologyConfig conf; public StartRing(RingTopologyConfig conf) { this.conf = conf; } @Override public void run() { CheckMyName cs = new CheckMyName(conf); cs.ds1.setKey("host"); } }