RLPark 1.0.0
Reinforcement Learning Framework in Java

Scheduler.java

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 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark