Continuation1

class Continuation1<T1>(    block: (p1: T1) -> Unit,     invoker: CPointer<CFunction<(COpaquePointer?) -> Unit>>,     singleShot: Boolean = false) : Function1<T1, Unit>

Constructors

Link copied to clipboard
fun <T1> Continuation1(    block: (p1: T1) -> Unit,     invoker: CPointer<CFunction<(COpaquePointer?) -> Unit>>,     singleShot: Boolean = false)

Functions

Link copied to clipboard
fun dispose()
Link copied to clipboard
open operator override fun invoke(p1: T1)

Extensions

Link copied to clipboard

This is an experimental API. Given a class for a compiled Kotlin lambda or a function expression, returns a KFunction instance providing introspection capabilities for that lambda or function expression and its parameters. Not all features are currently supported, in particular KCallable.call and KCallable.callBy will fail at the moment.