Package com.codeforces.graygoose.util

Examples of com.codeforces.graygoose.util.SiteCheckingService


        logger.info(String.format("%d events were successfully removed.", removedEventCount));
    }

    @Override
    public void run() {
        SiteCheckingService siteCheckingService = SiteCheckingService.newSiteCheckingService();

        try {
            int iteration = 0;

            while (rescannerContextListener.isAlive()) {
                logger.info(String.format("Start sites checking."));
                siteCheckingService.checkSites();
                logger.info(String.format("Finish sites checking."));

                Thread.sleep(60 * 1000);
                iteration++;

View Full Code Here

TOP

Related Classes of com.codeforces.graygoose.util.SiteCheckingService

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.