blob: 81f69fa6e9ebd6e18565380017f7ff38a118d878 [file] [log] [blame]
package com.gemstone.gemfire.internal.redis.executor.list;
import com.gemstone.gemfire.internal.redis.RedisConstants.ArityDef;
public class RPushExecutor extends PushExecutor {
@Override
protected ListDirection pushType() {
return ListDirection.RIGHT;
}
@Override
public String getArgsError() {
return ArityDef.RPUSH;
}
}