annotate src/main/java/christie/topology/manager/keepalive/StartKeepAlive.java @ 121:8949d0ecf1f6

refactor Topology
author akahori
date Tue, 11 Dec 2018 15:46:09 +0900
parents 825e01825ad3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
49
fd944876257b add node and keepalive
akahori
parents:
diff changeset
1 package christie.topology.manager.keepalive;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
2
107
825e01825ad3 update java11
akahori
parents: 49
diff changeset
3 import christie.topology.node.StartTopologyNode;
49
fd944876257b add node and keepalive
akahori
parents:
diff changeset
4 import christie.topology.node.TopologyNode;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
5 import christie.topology.node.TopologyNodeConfig;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
6
fd944876257b add node and keepalive
akahori
parents:
diff changeset
7 public class StartKeepAlive {
fd944876257b add node and keepalive
akahori
parents:
diff changeset
8 public static void main(String[] args) {
fd944876257b add node and keepalive
akahori
parents:
diff changeset
9 TopologyNodeConfig conf = new TopologyNodeConfig(args);
107
825e01825ad3 update java11
akahori
parents: 49
diff changeset
10 new StartTopologyNode(conf, new KeepAlive());
49
fd944876257b add node and keepalive
akahori
parents:
diff changeset
11 }
fd944876257b add node and keepalive
akahori
parents:
diff changeset
12 }