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

net.openhft.chronicle.core.LicenceCheck Maven / Gradle / Ivy

There is a newer version: 2.27ea1
Show newest version
package net.openhft.chronicle.core;

/**
 * @author Rob Austin.
 */
public interface LicenceCheck {

    /**
     * checks if the function you are about to call is part of an enterprise product, if the licence
     * fails a runtime exception will be thrown
     */
    default void licenceCheck() {

    }

    default boolean isAvailable() {
        return true;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy