All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.activej.crdt.storage.cluster.Sharder Maven / Gradle / Ivy

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