Interface DBusObjectManagerClient.InterfaceProxySignalCallback
- All Superinterfaces:
FunctionPointer
- Enclosing class:
DBusObjectManagerClient
- 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 DBusObjectManagerClient.InterfaceProxySignalCallback
extends FunctionPointer
Functional interface declaration of the InterfaceProxySignalCallback callback.
- Since:
- 2.30
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidrun(@Nullable DBusObjectProxy objectProxy, @Nullable DBusProxy interfaceProxy, String senderName, String signalName, @Nullable Variant parameters) Emitted when a D-Bus signal is received oninterfaceProxy.default MemorySegmenttoCallback(Arena arena) Creates a native function pointer to theupcall(MemorySegment, MemorySegment, MemorySegment, MemorySegment, MemorySegment, MemorySegment)method.default voidupcall(MemorySegment sourceDBusObjectManagerClient, MemorySegment objectProxy, MemorySegment interfaceProxy, MemorySegment senderName, MemorySegment signalName, MemorySegment parameters) Theupcallmethod is called from native code.
-
Method Details
-
run
void run(@Nullable DBusObjectProxy objectProxy, @Nullable DBusProxy interfaceProxy, String senderName, String signalName, @Nullable Variant parameters) Emitted when a D-Bus signal is received on
interfaceProxy.This signal exists purely as a convenience to avoid having to connect signals to all interface proxies managed by
manager.This signal is emitted in the thread-default main context (see MainContext#pushThreadDefault) that
managerwas constructed in.- Since:
- 2.30
-
upcall
default void upcall(MemorySegment sourceDBusObjectManagerClient, MemorySegment objectProxy, MemorySegment interfaceProxy, MemorySegment senderName, MemorySegment signalName, MemorySegment parameters) Theupcallmethod is called from native code. The parameters are marshaled andrun(DBusObjectProxy, DBusProxy, String, String, Variant)is executed. -
toCallback
Creates a native function pointer to theupcall(MemorySegment, MemorySegment, MemorySegment, MemorySegment, MemorySegment, MemorySegment)method.- Specified by:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-