A2uiCoreValueResolver


public 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 methods

abstract Object

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

Public methods

resolve

Added in 1.0.0-alpha01
abstract Object resolve(@NonNull A2uiDataPath path)

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

Parameters
@NonNull A2uiDataPath path

The data path to resolve.

Returns
Object

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