
src.org.neodatis.tool.wrappers.OdbThread Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neodatis-odb Show documentation
Show all versions of neodatis-odb Show documentation
The NeoDatis Object Database
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 - 2025 Weber Informatics LLC | Privacy Policy