
comanche.MultiThreadScheduler Maven / Gradle / Ivy
package comanche;
public class MultiThreadScheduler implements Scheduler {
public void schedule (Runnable task) { new Thread(task).start(); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy