Go to the documentation of this file.00001 package rlpark.plugin.rltoys.experiments.scheduling.interfaces;
00002
00003 public interface Scheduler {
00004 void start();
00005
00006 void waitAll();
00007
00008 JobQueue queue();
00009
00010 void dispose();
00011 }