Package freenet.support.compress

Examples of freenet.support.compress.RealCompressor


    this.random = node.random;
    this.pluginStores = new PluginStores(node, installConfig);
    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());
View Full Code Here

TOP

Related Classes of freenet.support.compress.RealCompressor

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.