Uses of Class
com.loomcache.server.datastructures.DistributedSet
Packages that use DistributedSet
Package
Description
-
Uses of DistributedSet in com.loomcache.server.datastructures
Methods in com.loomcache.server.datastructures that return DistributedSetModifier and TypeMethodDescriptionDataStructureRegistry.getOrCreateSet(String name) @Nullable DistributedSet<String> Methods in com.loomcache.server.datastructures with parameters of type DistributedSetModifier and TypeMethodDescriptionDistributedSet.difference(DistributedSet<E> other) Return the difference of this set minus another set (elements in this but not other).DistributedSet.intersection(DistributedSet<E> other) Return the intersection of this set with another set (elements in both).booleanDistributedSet.isSubsetOf(DistributedSet<E> other) Check if this set is a subset of another set (all elements in this are in other).booleanDistributedSet.isSupersetOf(DistributedSet<E> other) Check if this set is a superset of another set (all elements in other are in this).voidDataStructureRegistry.registerSet(String name, DistributedSet<String> set) booleanDataStructureRegistry.removeSetIfSame(String name, DistributedSet<String> set) DistributedSet.symmetricDifference(DistributedSet<E> other) Return the symmetric difference (elements in either but not both).DistributedSet.union(DistributedSet<E> other) Return the union of this set with another set (all elements in either). -
Uses of DistributedSet in com.loomcache.server.embedded
Methods in com.loomcache.server.embedded that return DistributedSetModifier and TypeMethodDescriptionGet or create a distributed set. -
Uses of DistributedSet in com.loomcache.springboot.config
Methods in com.loomcache.springboot.config that return DistributedSetModifier and TypeMethodDescriptionCacheNodeConfig.defaultSet(CacheNode cacheNode) Create default distributed set bean, resolved from the node's registry so it shares state with the rest of the embedded server. -
Uses of DistributedSet in com.loomcache.springboot.controller
Constructors in com.loomcache.springboot.controller with parameters of type DistributedSet