annotate src/main/java/christie/topology/manager/keepalive/KeepAlive.java @ 98:c0ce4d151f93

update uncomment System.exit
author akahori
date Tue, 18 Sep 2018 09:22:48 +0900
parents fd944876257b
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
fd944876257b add node and keepalive
akahori
parents:
diff changeset
3 import christie.codegear.CodeGear;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
4 import christie.codegear.CodeGearManager;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
5
fd944876257b add node and keepalive
akahori
parents:
diff changeset
6 public class KeepAlive extends CodeGear {
fd944876257b add node and keepalive
akahori
parents:
diff changeset
7
fd944876257b add node and keepalive
akahori
parents:
diff changeset
8 @Override
fd944876257b add node and keepalive
akahori
parents:
diff changeset
9 protected void run(CodeGearManager cgm) {
fd944876257b add node and keepalive
akahori
parents:
diff changeset
10 getLocalDGM().put("_SCHEDULER", new ListManager());
fd944876257b add node and keepalive
akahori
parents:
diff changeset
11 //TaskExecuter.getInstance().setKey();
fd944876257b add node and keepalive
akahori
parents:
diff changeset
12
fd944876257b add node and keepalive
akahori
parents:
diff changeset
13 }
fd944876257b add node and keepalive
akahori
parents:
diff changeset
14
fd944876257b add node and keepalive
akahori
parents:
diff changeset
15 }