use of com.twitter.heron.scheduler.UpdateTopologyManager in project heron by twitter.
the class AuroraScheduler method initialize.
@Override
public void initialize(Config mConfig, Config mRuntime) {
this.config = Config.toClusterMode(mConfig);
this.runtime = mRuntime;
this.controller = getController();
this.updateTopologyManager = new UpdateTopologyManager(config, runtime, Optional.<IScalable>of(this));
}
use of com.twitter.heron.scheduler.UpdateTopologyManager in project heron by twitter.
the class LocalScheduler method initialize.
@Override
public void initialize(Config mConfig, Config mRuntime) {
this.config = mConfig;
this.runtime = mRuntime;
this.updateTopologyManager = new UpdateTopologyManager(config, runtime, Optional.<IScalable>of(this));
}
Aggregations