view src/main/java/alice/test/topology/fish/StartStartX.java @ 547:e91a574b69de dispose

remove index
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Tue, 18 Aug 2015 16:15:17 +0900
parents aefbe41fcf12
children
line wrap: on
line source

package alice.test.topology.fish;

import alice.codesegment.CodeSegment;
import alice.datasegment.CommandType;
import alice.datasegment.Receiver;

public class StartStartX extends CodeSegment {

    public Receiver width = ids.create(CommandType.PEEK);

    @Override
    public void run() {
        ods.update("local", "startX", 0);
        StartStartX cs = new StartStartX();
        cs.width.setKey("local", "width", this);
    }

}