StableRef

@JvmInline
value class StableRef<out T : Any>

This class provides a way to create a stable handle to any Kotlin object. After converting to CPointer it can be safely passed to native code e.g. to be received in a Kotlin callback.

Any StableRef should be manually disposed

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard

Converts the handle to C pointer.

Link copied to clipboard
fun dispose()

Disposes the handle. It must not be used after that.

Link copied to clipboard
fun get(): T

Returns the object this handle was created for.

Properties

Link copied to clipboard