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

io.github.icodegarden.commons.lang.concurrent.CloseableThread Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package io.github.icodegarden.commons.lang.concurrent;

import java.io.Closeable;

/**
 * 
 * @author Fangfang.Xu
 *
 */
public abstract class CloseableThread extends Thread implements Closeable {

	public CloseableThread() {
		super();
	}

	public CloseableThread(Runnable target, String name) {
		super(target, name);
	}

	public CloseableThread(Runnable target) {
		super(target);
	}

	public CloseableThread(String name) {
		super(name);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy