Interface NativeBridgeSupport


public interface NativeBridgeSupport
Services used by the org.graalvm.jniutils module. To enable the org.graalvm.jniutils module a NativeBridgeSupport instance must be registered in the ImageSingletons.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the name of a feature using org.graalvm.jniutils module.
    Returns a NativeBridgeSupport instance registered in the ImageSingletons.
    boolean
    isTracingEnabled(int level)
    Checks if logging at given level is enabled.
    void
    trace(String message)
    Logs the message.
  • Method Details

    • getFeatureName

      String getFeatureName()
      Returns the name of a feature using org.graalvm.jniutils module. The feature name is used in the logging output.
    • isTracingEnabled

      boolean isTracingEnabled(int level)
      Checks if logging at given level is enabled.
    • trace

      void trace(String message)
      Logs the message.
    • getInstance

      static NativeBridgeSupport getInstance()
      Returns a NativeBridgeSupport instance registered in the ImageSingletons.