RepeatingCommand abstract class
General-purpose Command interface for tasks that repeat.
abstract class RepeatingCommand {
/**
* Returns true if the RepeatingCommand should be invoked again.
*/
bool execute();
}
Subclasses
Flusher, RepeatingCommandAdapter, Rescuer
Methods
abstract bool execute() #
Returns true if the RepeatingCommand should be invoked again.