blob: 9213a4a567ebe444c579376c854309ae174674a5 [file] [log] [blame]
package com.gemstone.gemfire.internal.redis.executor.list;
import com.gemstone.gemfire.internal.redis.Command;
import com.gemstone.gemfire.internal.redis.Coder;
import com.gemstone.gemfire.internal.redis.ExecutionHandlerContext;
public class LInsertExecutor extends ListExecutor {
@Override
public void executeCommand(Command command, ExecutionHandlerContext context) {
command.setResponse(Coder.getErrorResponse(context.getByteBufAllocator(), "Unfortunately GemFireRedis server does not support LINSERT"));
}
}