made getShardInfo(byte[]) public

This commit is contained in:
Dmytro
2011-03-21 15:02:07 +00:00
parent dc89193635
commit cb0d76051d

View File

@@ -70,7 +70,7 @@ public class Sharded<R, S extends ShardInfo<R>> {
return resources.get(getShardInfo(key));
}
private S getShardInfo(byte[] key) {
public S getShardInfo(byte[] key) {
SortedMap<Long, S> tail = nodes.tailMap(algo.hash(key));
if (tail.size() == 0) {
return nodes.get(nodes.firstKey());