Package org.gnome.webkit
Interface WebView.UserMessageReceivedCallback
- All Superinterfaces:
FunctionPointer
- Enclosing class:
WebView
- 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 WebView.UserMessageReceivedCallback
extends FunctionPointer
Functional interface declaration of the
UserMessageReceivedCallback
callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
run
(UserMessage message) This signal is emitted when aWebKitUserMessage
is received from theWebKitWebPage
corresponding towebView
.default MemorySegment
toCallback
(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment)
method.default int
upcall
(MemorySegment sourceWebView, MemorySegment message) Theupcall
method is called from native code.
-
Method Details
-
run
This signal is emitted when aWebKitUserMessage
is received from theWebKitWebPage
corresponding towebView
. You can reply to the message using webkit_user_message_send_reply().You can handle the user message asynchronously by calling g_object_ref() on
message
and returningtrue
. If the last reference ofmessage
is removed and the message has not been replied to, the operation in theWebKitWebPage
will finish with errorUserMessageError.USER_MESSAGE_UNHANDLED_MESSAGE
. -
upcall
Theupcall
method is called from native code. The parameters are marshaled andrun(org.gnome.webkit.UserMessage)
is executed. -
toCallback
Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment)
method.- Specified by:
toCallback
in interfaceFunctionPointer
- Parameters:
arena
- the function pointer will be allocated in this arena- Returns:
- the native function pointer
-