Interface WebContext.UserMessageReceivedCallback
- All Superinterfaces:
FunctionPointer
- Enclosing class:
WebContext
- 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 WebContext.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 a web process extension.default MemorySegmenttoCallback(Arena arena) Creates a native function pointer to theupcall(MemorySegment, MemorySegment)method.default intupcall(MemorySegment sourceWebContext, MemorySegment message) Theupcallmethod is called from native code.
-
Method Details
-
run
This signal is emitted when a
WebKitUserMessageis received from a web process extension. 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.- Since:
- 2.28
-
upcall
Theupcallmethod is called from native code. The parameters are marshaled andrun(UserMessage)is executed. -
toCallback
Creates a native function pointer to theupcall(MemorySegment, MemorySegment)method.- Specified by:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-