A2uiCoreValueResolver


fun interface A2uiCoreValueResolver


A callback interface provided by the framework layer during evaluation. Allows the core to read from the data model synchronously while enabling the framework to track data accesses for reactive updates.

Summary

Public functions

Any?

Resolves a value from the data model at the given path.

Public functions

resolve

Added in 1.0.0-alpha01
fun resolve(path: A2uiDataPath): Any?

Resolves a value from the data model at the given path.

Parameters
path: A2uiDataPath

The data path to resolve.

Returns
Any?

The resolved value or null if the given path does not exist in the data model.