Package freenet.node.useralerts

Examples of freenet.node.useralerts.UserAlertManager


    storeChecker = new DatastoreChecker(node);
    byte[] pwdBuf = new byte[16];
    random.nextBytes(pwdBuf);
    compressor = new RealCompressor(node.executor);
    this.formPassword = Base64.encode(pwdBuf);
    alerts = new UserAlertManager(this);
    persister = new ConfigurablePersister(this, nodeConfig, "clientThrottleFile", "client-throttle.dat", sortOrder++, true, false,
      "NodeClientCore.fileForClientStats", "NodeClientCore.fileForClientStatsLong", node.ticker, node.getRunDir());

    SimpleFieldSet throttleFS = persister.read();
    if(logMINOR)
View Full Code Here

TOP

Related Classes of freenet.node.useralerts.UserAlertManager

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.