public interface BoundDynamicType extends 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 methods

abstract void

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

abstract void

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

Public methods

close

Added in 1.0.0
@UiThread
abstract void close()

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

startEvaluation

Added in 1.0.0
@UiThread
abstract void startEvaluation()

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.