interface BoundDynamicType : AutoCloseable


An object representing a dynamic type that is being prepared for evaluation by bind.

In order for evaluation and sending values to start, startEvaluation needs to be called.

To stop the evaluation, this object should be closed with close.

Summary

Public functions

Unit

Destroys this dynamic type and it shouldn't be used after this.

Unit

Starts evaluating this dynamic type that was previously bound with any of the bind methods.

Public functions

close

Added in 1.0.0
@UiThread
fun close(): Unit

Destroys this dynamic type and it shouldn't be used after this.

startEvaluation

Added in 1.0.0
@UiThread
fun startEvaluation(): Unit

Starts evaluating this dynamic type that was previously bound with any of the bind methods.

It's the callers responsibility to destroy those dynamic types after use, with close.