valueInfoAsync
fun <T> valueInfoAsync(formSchema: Schema<T>, formValue: T, path: Path = AbsolutePath.MATCH_ALL, executor: Executor = Dispatchers.Default.asExecutor()): CompletableFuture<List<ValueInfo<*>>>
fun <T> valueInfoAsync(formSchema: Schema<T>, formValue: T, path: String, executor: Executor = Dispatchers.Default.asExecutor()): CompletableFuture<List<ValueInfo<*>>>
Returns a future that completes with a list of information about the parts of the form value formValue (with schema formSchema) matching path.
The future will complete exceptionally with InvalidPathException if path matches no schemas.
Optionally provide an Executor to specify the threading model used for this function. By default, the kotlinx.coroutines Default thread pool is used. Pass Runnable::run as the executor to instead run this function in the calling thread.