Class EvalShaCommand
- java.lang.Object
-
- com.moilioncircle.redis.replicator.event.AbstractEvent
-
- com.moilioncircle.redis.replicator.cmd.impl.AbstractCommand
-
- com.moilioncircle.redis.replicator.cmd.impl.EvalShaCommand
-
- All Implemented Interfaces:
Command,Event,Serializable
@CommandSpec(command="EVALSHA") public class EvalShaCommand extends AbstractCommand
- Since:
- 2.4.7
- Author:
- Leon Chen
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.moilioncircle.redis.replicator.event.Event
Event.Context
-
-
Field Summary
-
Fields inherited from class com.moilioncircle.redis.replicator.event.AbstractEvent
context
-
-
Constructor Summary
Constructors Constructor Description EvalShaCommand()EvalShaCommand(byte[] sha, int numkeys, byte[][] keys, byte[][] args)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[][]getArgs()byte[][]getKeys()intgetNumkeys()byte[]getSha()voidsetArgs(byte[][] args)voidsetKeys(byte[][] keys)voidsetNumkeys(int numkeys)voidsetSha(byte[] sha)-
Methods inherited from class com.moilioncircle.redis.replicator.event.AbstractEvent
getContext, setContext
-
-
-
-
Method Detail
-
getSha
public byte[] getSha()
-
setSha
public void setSha(byte[] sha)
-
getNumkeys
public int getNumkeys()
-
setNumkeys
public void setNumkeys(int numkeys)
-
getKeys
public byte[][] getKeys()
-
setKeys
public void setKeys(byte[][] keys)
-
getArgs
public byte[][] getArgs()
-
setArgs
public void setArgs(byte[][] args)
-
-