⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 queueassignmentpolicy.java

📁 这是个爬虫和lucece相结合最好了
💻 JAVA
字号:
/* QueueAssignmentPolicy** $Id: QueueAssignmentPolicy.java 3538 2005-06-09 01:21:45Z stack-sf $** Created on Oct 5, 2004** Copyright (C) 2004 Internet Archive.** This file is part of the Heritrix web crawler (crawler.archive.org).** Heritrix is free software; you can redistribute it and/or modify* it under the terms of the GNU Lesser Public License as published by* the Free Software Foundation; either version 2.1 of the License, or* any later version.** Heritrix is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the* GNU Lesser Public License for more details.** You should have received a copy of the GNU Lesser Public License* along with Heritrix; if not, write to the Free Software* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA*/ package org.archive.crawler.frontier;import org.archive.crawler.datamodel.CandidateURI;import org.archive.crawler.framework.CrawlController;/** * Establishes a mapping from CrawlURIs to String keys (queue names). *  * @author gojomo */public abstract class QueueAssignmentPolicy {    /**      * Get the String key (name) of the queue to which the      * CrawlURI should be assigned.      *      * Note that changes to the CrawlURI, or its associated      * components (such as CrawlServer), may change its queue     * assignment.     * @param controller This crawls' controller.     *      * @param cauri CandidateURI to calculate class key for.     * @return the String key of the queue to assign the CrawlURI      */    public abstract String getClassKey(CrawlController controller,        CandidateURI cauri);        /**     * Returns the maximum number of different keys this policy     * can create. If there is no maximum, -1 is returned (default).     *      * @return  Maximum number of different keys, or -1 if unbounded.     */    public int maximumNumberOfKeys() {        return -1;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -