RLPark 1.0.0
Reinforcement Learning Framework in Java

JobPool.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.experiments.scheduling.interfaces;
00002 
00003 import zephyr.plugin.core.api.signals.Listener;
00004 
00005 public interface JobPool {
00006   interface JobPoolListener extends Listener<JobPool> {
00007   };
00008 
00009   PoolResult submitTo(Scheduler scheduler);
00010 
00011   void add(Runnable job);
00012 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark