Interface Glib.OnTestLogFatalFunc

Enclosing class:
Glib
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface Glib.OnTestLogFatalFunc
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    onTestLogFatalFunc(CallbackHandler __self, Str log_domain, int log_level, Str message, Pointer user_data)
    Specifies the prototype of fatal log handler functions.
  • Method Details

    • onTestLogFatalFunc

      boolean onTestLogFatalFunc(CallbackHandler __self, @Nonnull Str log_domain, int log_level, @Nonnull Str message, @Nullable Pointer user_data)
      Specifies the prototype of fatal log handler functions.
      Parameters:
      log_domain - the log domain of the message
      log_level - the log level of the message (including the fatal and recursion flags)
      message - the message to process
      user_data - user data, set in g_test_log_set_fatal_handler()
      Returns:
      %TRUE if the program should abort, %FALSE otherwise