Mercurial > hg > Database > Alice
comparison src/main/java/alice/topology/manager/keeparive/KeepAlive.java @ 345:8f71c3e6f11d
Change directory structure Maven standard
author | sugi |
---|---|
date | Wed, 16 Apr 2014 18:26:07 +0900 |
parents | |
children | aefbe41fcf12 |
comparison
equal
deleted
inserted
replaced
344:9f97ec18f8c5 | 345:8f71c3e6f11d |
---|---|
1 package alice.topology.manager.keeparive; | |
2 | |
3 import alice.topology.node.TopologyNode; | |
4 import alice.topology.node.TopologyNodeConfig; | |
5 | |
6 public class KeepAlive { | |
7 public static void main(String[] args) { | |
8 TopologyNodeConfig conf = new TopologyNodeConfig(args); | |
9 new TopologyNode(conf, new StartKeepAlive()); | |
10 } | |
11 | |
12 } |