Interface WebPage.UserMessageReceivedCallback
- All Superinterfaces:
FunctionPointer
- Enclosing class:
WebPage
- 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 WebPage.UserMessageReceivedCallback
extends FunctionPointer
Functional interface declaration of the
UserMessageReceivedCallback callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanrun(@Nullable UserMessage message) This signal is emitted when aWebKitUserMessageis received from theWebKitWebViewcorresponding towebPage.You can reply to the message using webkit_user_message_send_reply().default MemorySegmenttoCallback(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment)method.default intupcall(MemorySegment sourceWebPage, MemorySegment message) Theupcallmethod is called from native code.
-
Method Details
-
run
This signal is emitted when aWebKitUserMessageis received from theWebKitWebViewcorresponding towebPage.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
messageand returningtrue. If the last reference ofmessageis removed and the message has been replied, the operation in theWebKitWebViewwill finish with errorUserMessageError.USER_MESSAGE_UNHANDLED_MESSAGE.- Since:
- 2.28
-
upcall
Theupcallmethod is called from native code. The parameters are marshaled andrun(org.webkitgtk.webprocessextension.UserMessage)is executed. -
toCallback
Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment)method.- Specified by:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-