com.exasol.udfdebugging.Module Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of udf-debugging-java Show documentation
Show all versions of udf-debugging-java Show documentation
Utilities for debugging, profiling and code coverage measure for UDFs.
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