view src/main/java/alice/test/topology/ring/StartRing.java @ 655:1c93e82e05c6 default tip

fix timestamp
author suruga
date Sat, 17 Feb 2018 00:33:00 +0900
parents aefbe41fcf12
children 15eeb439830c
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");
    }

}