Package org.archive.crawler.reporting

Examples of org.archive.crawler.reporting.AlertThreadGroup


        //final String job = changeState(j, ACTIVE);
       
        // this temporary thread ensures all crawl-created threads
        // land in the AlertThreadGroup, to assist crawl-wide
        // logging/alerting
        alertThreadGroup = new AlertThreadGroup(getShortName());
        alertThreadGroup.addLogger(getJobLogger());
        Thread launcher = new Thread(alertThreadGroup, getShortName()+" launchthread") {
            public void run() {
                CrawlController cc = getCrawlController();
                startContext();
View Full Code Here


   
    transient protected AlertThreadGroup alertThreadGroup;
   
    public void start() {
        // cache AlertThreadGroup for later ToePool launch
        AlertThreadGroup atg = AlertThreadGroup.current();
        if(atg!=null) {
            alertThreadGroup = atg;
        }
       
        if(isRunning) {
View Full Code Here

TOP

Related Classes of org.archive.crawler.reporting.AlertThreadGroup

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.