Uses of Class
cloud.opencode.base.functional.async.LazyAsync
Packages that use LazyAsync
Package
Description
OpenCode Functional - Functional Programming Utilities for JDK 25+
OpenCode 函数式编程工具库
Async Utilities - Virtual Thread functional utilities
异步工具 - 虚拟线程函数式工具
-
Uses of LazyAsync in cloud.opencode.base.functional
Methods in cloud.opencode.base.functional that return LazyAsync -
Uses of LazyAsync in cloud.opencode.base.functional.async
Methods in cloud.opencode.base.functional.async that return LazyAsyncModifier and TypeMethodDescriptionstatic <T1,T2, R> LazyAsync <R> LazyAsync.combine(LazyAsync<T1> la1, LazyAsync<T2> la2, BiFunction<T1, T2, R> combiner) Combine two lazy async computations 组合两个惰性异步计算static <T> LazyAsync<T> LazyAsync.completed(T value) Create an already completed lazy async 创建已完成的惰性异步static <T> LazyAsync<T> Create a failed lazy async 创建失败的惰性异步<U> LazyAsync<U> Flat-map to another lazy async 扁平映射到另一个惰性异步<U> LazyAsync<U> Transform the result lazily 惰性转换结果static <T> LazyAsync<T> Create a lazy async computation 创建惰性异步计算Provide fallback on failure 失败时提供回退static <T> LazyAsync<T> Race two lazy async computations 竞争两个惰性异步计算Recover from failure 从失败恢复Methods in cloud.opencode.base.functional.async with parameters of type LazyAsyncModifier and TypeMethodDescriptionstatic <T1,T2, R> LazyAsync <R> LazyAsync.combine(LazyAsync<T1> la1, LazyAsync<T2> la2, BiFunction<T1, T2, R> combiner) Combine two lazy async computations 组合两个惰性异步计算Provide fallback on failure 失败时提供回退static <T> LazyAsync<T> Race two lazy async computations 竞争两个惰性异步计算Method parameters in cloud.opencode.base.functional.async with type arguments of type LazyAsync