Search in sources :

Example 1 with Server

use of kutch.biff.marvin.network.Server 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;
}
Also used : Server(kutch.biff.marvin.network.Server) ConfigurationReader(kutch.biff.marvin.configuration.ConfigurationReader)

Aggregations

ConfigurationReader (kutch.biff.marvin.configuration.ConfigurationReader)1 Server (kutch.biff.marvin.network.Server)1