comments added

pull/4226/head
Nikita Koksharov 3 years ago
parent a3cd031834
commit ceb47e529f

@ -28,7 +28,17 @@ import java.util.List;
*/ */
public interface RScript extends RScriptAsync { public interface RScript extends RScriptAsync {
enum Mode {READ_ONLY, READ_WRITE} enum Mode {
/**
* Execute script as read operation
*/
READ_ONLY,
/**
* Execute script as write operation
*/
READ_WRITE
}
enum ReturnType { enum ReturnType {
BOOLEAN(RedisCommands.EVAL_BOOLEAN_SAFE), BOOLEAN(RedisCommands.EVAL_BOOLEAN_SAFE),

Loading…
Cancel
Save