Namespace GdkWayland.Internal
Classes
- WaylandToplevelExportedAsyncHandler
Async Handler for WaylandToplevelExported. An async annotation indicates the closure will be called precisely once, after which it is then available for garbage collection.
- WaylandToplevelExportedCallHandler
Call Handler for WaylandToplevelExported. A call annotation indicates the closure should be valid for the duration of the call. This handler does not implement any special memory management.
- WaylandToplevelExportedForeverHandler
Forever Handler for WaylandToplevelExported. An forever annotation indicates the closure will be valid until the process terminates. Therefor the object will never be freed.
- WaylandToplevelExportedNotifiedHandler
Notified Handler for WaylandToplevelExported. A notified annotation indicates the closure should be kept alive until it is manually removed by the user. This removal is indicated by a destroy_notify event, emitted by the relevant library. Pass
DestroyNotifyin place of a destroy_notify callback parameter.