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;
import java.util.List;
/**
* Pipelined responses for all of the low level, non key related commands
*/
@@ -24,6 +26,8 @@ public interface BasicRedisPipeline {
Response<String> flushAll();
Response<String> info();
Response<List<String>> time();
Response<Long> dbSize();