Package org.apache.droids.api

Examples of org.apache.droids.api.TaskExceptionHandler


    String targetURI = baseURI + "/start_html";

    Droid<Link> droid = DroidsFactory.createSimpleExceptionCrawlingDroid(targetURI);

    TaskMaster<Link> taskMaster = (TaskMaster<Link>) droid.getTaskMaster();
    taskMaster.setExceptionHandler(new TaskExceptionHandler() {

      public TaskExceptionResult handleException(Exception ex) {
        if (ex instanceof RuntimeException) {
          return TaskExceptionResult.FATAL;
        }
View Full Code Here

TOP

Related Classes of org.apache.droids.api.TaskExceptionHandler

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.