added interfaces for ScriptingCommands, AdvancedCommands most of jedis and binaryjedis are defined by interfaces
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package redis.clients.jedis;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface AdvancedBinaryJedisCommands {
|
||||
|
||||
List<byte[]> configGet(byte[] pattern);
|
||||
|
||||
byte[] configSet(byte[] parameter, byte[] value);
|
||||
|
||||
String slowlogReset();
|
||||
|
||||
Long slowlogLen();
|
||||
|
||||
List<byte[]> slowlogGetBinary();
|
||||
|
||||
List<byte[]> slowlogGetBinary(long entries);
|
||||
|
||||
Long objectRefcount(byte[] key);
|
||||
|
||||
byte[] objectEncoding(byte[] key);
|
||||
|
||||
Long objectIdletime(byte[] key);
|
||||
}
|
||||
Reference in New Issue
Block a user