comments added

pull/243/head
Nikita 10 years ago
parent 8c510b5101
commit 85ce7b285d

@ -295,6 +295,12 @@ public class Redisson implements RedissonClient {
return new RedissonCountDownLatch(commandExecutor, name, id);
}
/**
* Returns keys operations.
* Each of Redis/Redisson object associated with own key
*
* @return
*/
@Override
public RKeys getKeys() {
return new RedissonKeys(commandExecutor);

@ -179,6 +179,12 @@ public interface RedissonClient {
*/
RBatch createBatch();
/**
* Returns keys operations.
* Each of Redis/Redisson object associated with own key
*
* @return
*/
RKeys getKeys();
/**

Loading…
Cancel
Save