| |
|
| java.lang.Object java.lang.Thread com.izforge.izpack.util.FreeThread
FreeThread | public class FreeThread extends Thread (Code) | | This class implements a thred that can be used to free native libraries safely.
version: 0.0.1 / 2/6/02 author: Elmar Grom |
Method Summary | |
public void | run() The run() method. |
FreeThread | public FreeThread(String name, NativeLibraryClient client)(Code) | | Standard constructor.
Parameters: name - the name of the library to free. The exact form of the name may be operatingsystem dependent. On Microsoft Windows this must be just the library name, without path butwith extension. Parameters: client - reference of the client object that is linked with the library to be freed. |
run | public void run()(Code) | | The run() method. Frees the library. Note that the thread is likely to get 'frozen' and the
application can only be treminated through a call to System.exit() .
|
|
|
|