view src/main/java/christie/topology/manager/keepalive/StartKeepAlive.java @ 272:b592fe1d4a4e default tip

create example Attendance
author matac42 <matac@cr.ie.u-ryukyu.ac.jp>
date Thu, 01 Jul 2021 20:41:07 +0900
parents 825e01825ad3
children
line wrap: on
line source

package christie.topology.manager.keepalive;

import christie.topology.node.StartTopologyNode;
import christie.topology.node.TopologyNode;
import christie.topology.node.TopologyNodeConfig;

public class StartKeepAlive {
    public static void main(String[] args) {
        TopologyNodeConfig conf = new TopologyNodeConfig(args);
        new StartTopologyNode(conf, new KeepAlive());
    }
}