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

com.izforge.izpack.util.FreeThread Maven / Gradle / Ivy

There is a newer version: 5.2.3
Show newest version
/*
 * IzPack - Copyright 2001-2008 Julien Ponge, All Rights Reserved.
 * 
 * http://izpack.org/
 * http://izpack.codehaus.org/
 * 
 * Copyright 2002 Elmar Grom
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 *     
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.izforge.izpack.util;

/*---------------------------------------------------------------------------*/

/**
 * This class implements a thred that can be used to free native libraries safely.
 *
 * @author Elmar Grom
 * @version 0.0.1 / 2/6/02
 */
/*---------------------------------------------------------------------------*/
public class FreeThread extends Thread
{

    private String name = "";

    private NativeLibraryClient client = null;

    /*--------------------------------------------------------------------------*/

    /**
     * Standard constructor.
     *
     * @param name   the name of the library to free. The exact form of the name may be operating
     *               system dependent. On Microsoft Windows this must be just the library name, without path but
     *               with extension.
     * @param client reference of the client object that is linked with the library to be freed.
     */
    /*--------------------------------------------------------------------------*/
    public FreeThread(String name, NativeLibraryClient client)
    {
        this.name = name;
        this.client = client;
    }

    /*--------------------------------------------------------------------------*/

    /**
     * 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().
     */
    /*--------------------------------------------------------------------------*/
    public void run()
    {
        client.freeLibrary(name);
    }
}
/*---------------------------------------------------------------------------*/




© 2015 - 2025 Weber Informatics LLC | Privacy Policy