annotate src/main/java/christie/topology/manager/StartTopologyManager.java @ 64:f884c1bd0d36
fix IncomingHosts and RecordTopology. and refactor.
author |
akahori |
date |
Thu, 30 Aug 2018 10:55:37 +0900 |
parents |
cfd79a71f9cd |
children |
bf6ab64325f9 |
rev |
line source |
50
|
1 package christie.topology.manager;
|
|
2
|
|
3 import christie.codegear.CodeGearManager;
|
|
4 import christie.codegear.StartCodeGear;
|
|
5
|
|
6 public class StartTopologyManager extends StartCodeGear{
|
|
7
|
60
|
8 public StartTopologyManager(CodeGearManager cgm, TopologyManagerConfig topologyManagerConfig){
|
50
|
9 super(cgm);
|
60
|
10 cgm.getLocalDGM().put("topologyManagerConfig", topologyManagerConfig);
|
|
11 cgm.setup(new TopologyManager());
|
50
|
12 }
|
|
13 }
|