view src/main/java/alice/test/topology/localTestTopology/LTopologyStartCodeSegment.java @ 645:cb16036404ba

fix local topology test
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 31 Dec 2017 11:04:29 +0900
parents 74dbb8809c73
children
line wrap: on
line source

package alice.test.topology.localTestTopology;

import alice.codesegment.CodeSegment;

import java.util.LinkedList;

public class LTopologyStartCodeSegment extends CodeSegment {

    private final LinkedList<LocalTestTopologyConfig> configs;

    public LTopologyStartCodeSegment(LinkedList<LocalTestTopologyConfig> configs) {
        this.configs = configs;
    }

    @Override
    public void run() {
        ods.put("remote1", "num", 0);
    }
}