com.github.houbb.redis.client.api.pool.IRedisClientPool Maven / Gradle / Ivy
The newest version!
package com.github.houbb.redis.client.api.pool;
import com.github.houbb.redis.client.api.client.IRedisClient;
/**
* @author binbin.hou
* @since 0.0.3
*/
public interface IRedisClientPool {
/**
* 获取 Redis 客户端
* @return 结果
* @since 0.0.3
*/
IRedisClient getRedisClient();
}