blob: 4d197cb4d698e7457ac7620e19d37218bfd09920 [file] [log] [blame]
package com.gemstone.gemfire.internal.redis.executor.list;
import com.gemstone.gemfire.internal.redis.RedisConstants.ArityDef;
public class LPushExecutor extends PushExecutor {
@Override
protected ListDirection pushType() {
return ListDirection.LEFT;
}
@Override
public String getArgsError() {
return ArityDef.LPUSH;
}
}