blob: 3227bf964e0aae1efc211ff5aa850816b44d68b9 [file] [log] [blame]
package com.gemstone.gemfire.internal.redis.executor.list;
import com.gemstone.gemfire.internal.redis.RedisConstants.ArityDef;
public class RPushXExecutor extends PushXExecutor {
@Override
protected ListDirection pushType() {
return ListDirection.RIGHT;
}
@Override
public String getArgsError() {
return ArityDef.RPUSHX;
}
}