Package net.yacy.peers.dht

Examples of net.yacy.peers.dht.Dispatcher


        this.yc = new Network(this);
        InstantBusyThread.oneTimeJob(this, "loadSeedLists", Network.log, 0);
        //final long startedSeedListAquisition = System.currentTimeMillis();

        // init a DHT transmission dispatcher
        this.dhtDispatcher = (this.peers.sizeConnected() == 0) ? null : new Dispatcher(
                this.indexSegments.segment(Segments.Process.LOCALCRAWLING),
                this.peers,
                true,
                10000);
View Full Code Here


                    networkName,
                    this.log,
                    this.queuesRoot);

            // init a DHT transmission dispatcher
            this.dhtDispatcher = (this.peers.sizeConnected() == 0) ? null : new Dispatcher(
                    this.indexSegments.segment(Segments.Process.LOCALCRAWLING),
                    this.peers,
                    true,
                    10000);
View Full Code Here

TOP

Related Classes of net.yacy.peers.dht.Dispatcher

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.