Namespace Rsvg.Internal
Classes
- SizeFuncAsyncHandler
Async Handler for SizeFunc. An async annotation indicates the closure will be called precisely once, after which it is then available for garbage collection.
- SizeFuncCallHandler
Call Handler for SizeFunc. A call annotation indicates the closure should be valid for the duration of the call. This handler does not implement any special memory management.
- SizeFuncForeverHandler
Forever Handler for SizeFunc. An forever annotation indicates the closure will be valid until the process terminates. Therefor the object will never be freed.
- SizeFuncNotifiedHandler
Notified Handler for SizeFunc. 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.