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

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