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

src.org.neodatis.tool.wrappers.OdbThread Maven / Gradle / Ivy

The newest version!
package org.neodatis.tool.wrappers;


/**
 * To wrap java.lang.Thread
 * @sharpen.ignore
 * @author olivier
 *
 */
public class OdbThread extends Thread {

	public OdbThread() {
		super();
	}

	public OdbThread(OdbRunnable target) {
		super(target);
	}
	
	public static String getCurrentThreadName(){
		return Thread.currentThread().getName();
	}
	public void interrupt(){
		super.interrupt();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy