All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ciir.umass.edu.utilities.WorkerThread Maven / Gradle / Ivy

There is a newer version: 2.10.1
Show newest version
package ciir.umass.edu.utilities;

public abstract class WorkerThread implements Runnable {
    protected int start = -1;
    protected int end = -1;

    public void set(final int start, final int end) {
        this.start = start;
        this.end = end;
    }

    @Override
    public abstract WorkerThread clone();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy