Package com.subgraph.orchid.circuits.guards

Examples of com.subgraph.orchid.circuits.guards.EntryGuards


    this.config = config;
    this.directory = directory;
    this.connectionCache = connectionCache;
    this.pathChooser = CircuitPathChooser.create(config, directory);
    if(config.getUseEntryGuards() || config.getUseBridges()) {
      this.pathChooser.enableEntryGuards(new EntryGuards(config, connectionCache, directoryDownloader, directory));
    }
    this.pendingExitStreams = new PendingExitStreams(config);
    this.circuitCreationTask = new CircuitCreationTask(config, directory, connectionCache, pathChooser, this, initializationTracker);
    this.activeCircuits = new HashSet<CircuitImpl>();
    this.cleanInternalCircuits = new LinkedList<InternalCircuit>();
View Full Code Here

TOP

Related Classes of com.subgraph.orchid.circuits.guards.EntryGuards

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.