add the time() method

This commit is contained in:
PumpkinJack
2014-05-04 15:15:21 +08:00
parent e17a312d92
commit 942fc1d77b

View File

@@ -1,5 +1,7 @@
package redis.clients.jedis; package redis.clients.jedis;
import java.util.List;
/** /**
* Pipelined responses for all of the low level, non key related commands * Pipelined responses for all of the low level, non key related commands
*/ */
@@ -25,6 +27,8 @@ public interface BasicRedisPipeline {
Response<String> info(); Response<String> info();
Response<List<String>> time();
Response<Long> dbSize(); Response<Long> dbSize();
Response<String> shutdown(); Response<String> shutdown();