2 Copyright (C) 2001, 2006 United States Government
3 as represented by the Administrator of the
4 National Aeronautics and Space Administration.
7 package gov
.nasa
.worldwind
.util
;
11 * @version $Id: TaskService.java 2455 2007-07-28 00:32:43Z tgaskins $
13 public interface TaskService
15 void shutdown(boolean immediately
);
17 boolean contains(Runnable runnable
);
20 * Enqueues a task to run.
22 * @param runnable the task to add
23 * @throws IllegalArgumentException if <code>runnable</code> is null
25 void addTask(Runnable runnable
);
29 boolean hasActiveTasks();