Uses of Interface
cloud.opencode.base.tree.virtual.LazyChildLoader
Packages that use LazyChildLoader
-
Uses of LazyChildLoader in cloud.opencode.base.tree
Methods in cloud.opencode.base.tree with parameters of type LazyChildLoaderModifier and TypeMethodDescriptionstatic <T,ID> VirtualTree <T, ID> OpenTree.virtualTree(ID id, T data, LazyChildLoader<VirtualTree<T, ID>, ID> childLoader) Create a virtual tree root with lazy loading 创建支持懒加载的虚拟树根节点 -
Uses of LazyChildLoader in cloud.opencode.base.tree.virtual
Methods in cloud.opencode.base.tree.virtual with parameters of type LazyChildLoaderModifier and TypeMethodDescriptionVirtualTree.Builder.childLoader(LazyChildLoader<VirtualTree<T, ID>, ID> childLoader) Set child loader 设置子节点加载器static <T,ID> VirtualTree <T, ID> VirtualTree.root(ID id, T data, LazyChildLoader<VirtualTree<T, ID>, ID> childLoader) Create a root virtual tree node 创建根虚拟树节点Constructors in cloud.opencode.base.tree.virtual with parameters of type LazyChildLoaderModifierConstructorDescriptionVirtualTree(ID id, ID parentId, T data, LazyChildLoader<VirtualTree<T, ID>, ID> childLoader) Create virtual tree node with lazy loading 创建支持懒加载的虚拟树节点VirtualTree(ID id, ID parentId, T data, LazyChildLoader<VirtualTree<T, ID>, ID> childLoader, Map<ID, VirtualTree<T, ID>> nodeCache, int maxCacheSize, boolean cacheEnabled) Create virtual tree node with configuration 创建可配置的虚拟树节点