Package freenet.support

Examples of freenet.support.SerialExecutor


    entriesByKey = LRUMap.createSafeMap();
    blockOfferListByKey = LRUMap.createSafeMap();
    this.node = node;
    offerAuthenticatorKey = new byte[32];
    node.random.nextBytes(offerAuthenticatorKey);
    offerExecutor = new SerialExecutor(NativeThread.HIGH_PRIORITY);
    node.ticker.queueTimedJob(new FailureTableCleaner(), CLEANUP_PERIOD);
  }
View Full Code Here


      Logger.debug(this, "Initialize Plugin Manager config");

    client = core.makeClient(PRIO, true, false);

    // callback executor
    executor = new SerialExecutor(NativeThread.NORM_PRIORITY);
    executor.start(node.executor, "PM callback executor");

    pmconfig = new SubConfig("pluginmanager", node.config);
//    pmconfig.register("configfile", "fplugins.ini", 9, true, true, "PluginConfig.configFile", "PluginConfig.configFileLong",
//        new StringCallback() {
View Full Code Here

TOP

Related Classes of freenet.support.SerialExecutor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.