Uses of Class
com.loomcache.server.datastructures.crdt.LWWRegister
Packages that use LWWRegister
-
Uses of LWWRegister in com.loomcache.server.datastructures
Methods in com.loomcache.server.datastructures that return LWWRegisterModifier and TypeMethodDescription@Nullable LWWRegister<String> DataStructureRegistry.getLWWRegister(String name) DataStructureRegistry.getOrCreateLWWRegister(String name) Methods in com.loomcache.server.datastructures with parameters of type LWWRegisterModifier and TypeMethodDescriptionvoidDataStructureRegistry.registerLWWRegister(String name, LWWRegister<String> register) -
Uses of LWWRegister in com.loomcache.server.datastructures.crdt
Methods in com.loomcache.server.datastructures.crdt that return LWWRegisterModifier and TypeMethodDescription<V> @Nullable LWWRegister<V> CrdtManager.getLWWRegister(String name) Get a registered LWW-Register.Methods in com.loomcache.server.datastructures.crdt with parameters of type LWWRegisterModifier and TypeMethodDescriptionvoidLWWRegister.merge(LWWRegister<V> other) Merge another LWW-Register into this one (anti-entropy).<V> voidCrdtManager.registerLWWRegister(String name, LWWRegister<V> register) Register an LWW-Register instance.