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

com.lambdaworks.jni.LibraryLoader Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
// Copyright (C) 2011 - Will Glozer.  All rights reserved.

package com.lambdaworks.jni;

/**
 * A {@code LibraryLoader} attempts to load the appropriate native library
 * for the current platform.
 *
 * @author Will Glozer
 */
public interface LibraryLoader {
    /**
     * Load a native library, and optionally verify any signatures.
     *
     * @param name      Name of the library to load.
     * @param verify    Verify signatures if signed.
     *
     * @return true if the library was successfully loaded.
     */
    boolean load(String name, boolean verify);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy