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

com.exasol.udfdebugging.Module Maven / Gradle / Ivy

The newest version!
package com.exasol.udfdebugging;

import java.io.Closeable;
import java.util.stream.Stream;

/**
 * Modules define a specific functionality that users can enable using system properties.
 */
public interface Module extends Closeable {

    /**
     * Get JVM options required by this module.
     * 
     * @return JVM options
     */
    public Stream getJvmOptions();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy