Uses of Class
scone.robot.RobotTask

Packages that use RobotTask
scone.examples.rueckspiegel The Rückspiegel shows incoming links as thumbnails and demonstrates how to program the robot of scone. 
scone.robot This package provides a configurable high-performance web-robot. 
 

Uses of RobotTask in scone.examples.rueckspiegel
 

Methods in scone.examples.rueckspiegel with parameters of type RobotTask
 void RueckspiegelPlugin.robotNewPage(RobotHtmlNode robotHtmlNode, RobotTask robotTask)
          The robot calls this method for every new document If it's not the Google result page the new thumbnail is added to the drawingArea.
 void RueckspiegelPlugin.robotTaskFinished(RobotTask robotTask)
          This method is called by the robot, if the task was completely finished
 

Uses of RobotTask in scone.robot
 

Methods in scone.robot that return RobotTask
 RobotTask QueueEntry.getRobotTask()
          Get the robotTask this queueEntry belongs to
 

Methods in scone.robot with parameters of type RobotTask
 int URLQueue.getNumberOfPendingQueueEntries(RobotTask robotTask)
          Get the number of entries belonging to the robotTask
 int Robot.getNumberOfPendingQueueEntries(RobotTask robotTask)
          Get the number of QueueEntries from this robotTask
 int GenericURLQueue.getNumberOfPendingQueueEntries(RobotTask robotTask)
          Get the number of entries belonging to the robotTask
 java.util.Vector URLQueue.getPendingQueueEntries(RobotTask robotTask)
          Get vector with all entries belonging to the robotTask
 java.util.Vector Robot.getPendingQueueEntries(RobotTask robotTask)
          Get all pending QueueEntries which belong to robotTask
 java.util.Vector GenericURLQueue.getPendingQueueEntries(RobotTask robotTask)
          Get vector with all entries belonging to the robotTask
 QueueEntry URLQueue.getPendingURL(SimpleUri uri, RobotTask robotTask)
          Get the entry belonging to robotTask and waiting to download url
 QueueEntry Robot.getPendingURL(SimpleUri uri, RobotTask robotTask)
          Use this method to get the QueueEntry with the same url from the URLQueue which belongs to the robotTask
 QueueEntry GenericURLQueue.getPendingURL(SimpleUri uri, RobotTask robotTask)
          Get the entry belonging to robotTask and waiting to download url
 boolean URLQueue.isPendingURL(SimpleUri uri, RobotTask robotTask)
          Checks, if there is an entry belonging to robotTask, which is waiting to download url
 boolean Robot.isPendingURL(SimpleUri uri, RobotTask robotTask)
          Use this method to check if an url is pending in the execution of a robotTask
 boolean GenericURLQueue.isPendingURL(SimpleUri uri, RobotTask robotTask)
          Checks, if there is an entry belonging to robotTask, which is waiting to download url
 void URLQueue.removeAllQueueEntries(RobotTask robotTask)
          Remove all queueEntries belonging to this task
 void GenericURLQueue.removeAllQueueEntries(RobotTask robotTask)
          Remove all queueEntries of the specified robotTask
 void FairBreadthSearchURLQueue.removeAllQueueEntries(RobotTask robotTask)
          Remove all queueEntries of the specified robotTask
 void RobotUser.robotNewPage(RobotHtmlNode robotHtmlNode, RobotTask robotTask)
          This method is called for every processed htmlNode
 void RobotTestPlugin.robotNewPage(RobotHtmlNode robotHtmlNode, RobotTask robotTask)
          The robot found a new document
 void RobotUser.robotTaskFinished(RobotTask robotTask)
          This method is called, if the task was completely finished
 void RobotTestPlugin.robotTaskFinished(RobotTask robotTask)
          The robot finished the robotTask
 void Robot.scan(RobotTask robotTask)
          With this method you can advice the robot to execute a specified task.
 void Robot.stopRobotTask(RobotTask robotTask)
          With this method you can advice the robot to stop a specified task.
 

Constructors in scone.robot with parameters of type RobotTask
QueueEntry(SimpleUri uri, int depth, RobotTask robotTask)
          Constructor