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

com.github.obase.jedis.ShardInfo Maven / Gradle / Ivy

The newest version!
package com.github.obase.jedis;

import redis.clients.jedis.JedisPool;

public class ShardInfo {

	public final JedisPool pool;
	public final long base;

	public ShardInfo(JedisPool pool, long base) {
		this.pool = pool;
		this.base = base;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy