Examples of startURL()


Examples of de.anomic.crawler.CrawlProfile.startURL()

  public boolean isRunning(final CrawlSwitchboard crawler) {
    final Iterator<byte[]> iter = crawler.getActive().iterator();
    while(iter.hasNext()) {
      final byte[] key = iter.next();
      final CrawlProfile crawl = crawler.getActive(key);
      if (crawl.startURL().equals(this.url)) {
        return true;       
      }
    }
    return false;
  }
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.