Skip to content

Commit

Permalink
Include BaseRedis interface in synchronous RedisCluster API #166
Browse files Browse the repository at this point in the history
  • Loading branch information
mp911de committed Dec 22, 2015
1 parent be325cb commit 921f194
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
*/
public interface RedisClusterConnection<K, V> extends RedisHashesConnection<K, V>, RedisKeysConnection<K, V>,
RedisStringsConnection<K, V>, RedisListsConnection<K, V>, RedisSetsConnection<K, V>, RedisSortedSetsConnection<K, V>,
RedisScriptingConnection<K, V>, RedisServerConnection<K, V>, RedisHLLConnection<K, V>, RedisGeoConnection<K, V> {
RedisScriptingConnection<K, V>, RedisServerConnection<K, V>, RedisHLLConnection<K, V>, RedisGeoConnection<K, V>,
BaseRedisConnection<K, V> {

/**
* Close the connection. The connection will become not usable anymore as soon as this method was called.
Expand Down

0 comments on commit 921f194

Please sign in to comment.