use of kutch.biff.marvin.configuration.ConfigurationReader in project Board-Instrumentation-Framework by intel.
the class Marvin method BeginLoadProcess.
private long BeginLoadProcess() {
long start = System.currentTimeMillis();
if (null == _Config) {
_Config = new ConfigurationReader();
}
if (null == _Config) {
return 0;
}
// kludgy I know, I know. I hang my head in shame
TASKMAN.setDataMgr(_DataMgr);
appConfig = _Config.ReadAppConfigFile(ConfigFilename);
if (null != appConfig) {
appConfig.setEnforceMediaSupport(enforceMediaSupport);
if (dumpAlias) {
AliasMgr.getAliasMgr().DumpTop();
}
_receiveServer = new Server(_DataMgr);
}
return System.currentTimeMillis() - start;
}
Aggregations