javax.constraints.scheduler.ResourceDisjunctivePool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsr331-scheduler Show documentation
Show all versions of jsr331-scheduler Show documentation
This is a JSR331 package for scheduling and resource allocation problems
The newest version!
package javax.constraints.scheduler;
public interface ResourceDisjunctivePool extends ResourcePool {
public ResourceDisjunctive get(int i);
public void add(int index,ResourceDisjunctive resource);
}