Interface Executor<X>

All Known Subinterfaces:
GraphExecutor<E>, Runner
All Known Implementing Classes:
AbstractGraphExecutor, AbstractRunner, BatchScheduleRunner, DefaultScheduleRunner, GUIScheduleRunner, InteractivBatchRunner, NetworkTopologyExecutor, ScheduleRunner

public interface Executor<X>
Interface for an object that will execute another object.
Version:
$Revision: 1.1 $ $Date: 2005/12/21 22:25:34 $
Author:
Jerry Vos
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    execute(X toExecuteOn)
    Executes an object.
  • Method Details

    • execute

      void execute(X toExecuteOn)
      Executes an object. To simplify scheduling apply a ScheduledMethod annotation to your implementation of this interface.
      Parameters:
      toExecuteOn - the object to execute on