
io.activej.crdt.storage.cluster.Sharder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of activej-crdt Show documentation
Show all versions of activej-crdt Show documentation
Conflict-free replicated data type implementation
The newest version!
package io.activej.crdt.storage.cluster;
public interface Sharder {
int[] shard(K key);
static Sharder none() {
return key -> new int[0];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy