Examples of CrawlerResult


Examples of com.soulgalore.crawler.core.CrawlerResult

        this.startUrl = startUrl;
    }

    public List<URI> crawl(final URICallback callback) {
        List<URI> uris = new ArrayList<URI>();
        final CrawlerResult result = crawler.getUrls(getConfiguration());
        Set<PageURL> pageURLs = result.getUrls();
        for (PageURL pageURL : pageURLs) {
            uris.add(pageURL.getUri());
            callback.submit(pageURL.getUri());
        }
        return uris;
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.