Examples of DummyJobRunner


Examples of freenet.support.DummyJobRunner

    this.checker = checker;
    this.linkFilterExceptionProvider = linkFilterExceptionProvider;
    this.memoryLimitedJobRunner = memoryLimitedJobRunner;
    this.tempRAFFactory = rafFactory;
    this.persistentRoot = persistentRoot;
    this.dummyJobRunner = new DummyJobRunner(mainExecutor, this);
    this.defaultPersistentFetchContext = defaultPersistentFetchContext;
    this.defaultPersistentInsertContext = defaultPersistentInsertContext;
    this.cryptoSecretTransient = cryptoSecretTransient;
  }
View Full Code Here

Examples of freenet.support.DummyJobRunner

        baseContext = HighLevelSimpleClientImpl.makeDefaultInsertContext(bigBucketFactory, new SimpleEventProducer());
        cryptoKey = new byte[32];
        r.nextBytes(cryptoKey);
        checker = new CRCChecksumChecker();
        memoryLimitedJobRunner = new MemoryLimitedJobRunner(9*1024*1024L, 20, executor);
        jobRunner = new DummyJobRunner(executor, null);
        URI = FreenetURI.generateRandomCHK(r);
    }
View Full Code Here

Examples of freenet.support.DummyJobRunner

        baseContext = HighLevelSimpleClientImpl.makeDefaultInsertContext(bigBucketFactory, new SimpleEventProducer());
        cryptoKey = new byte[32];
        r.nextBytes(cryptoKey);
        checker = new CRCChecksumChecker();
        memoryLimitedJobRunner = new MemoryLimitedJobRunner(9*1024*1024L, 20, executor);
        jobRunner = new DummyJobRunner(executor, null);
        URI = FreenetURI.generateRandomCHK(r);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.