com.redis.spring.batch.writer.operation.Del Maven / Gradle / Ivy
package com.redis.spring.batch.writer.operation;
import java.util.List;
import io.lettuce.core.RedisFuture;
import io.lettuce.core.api.async.BaseRedisAsyncCommands;
import io.lettuce.core.api.async.RedisKeyAsyncCommands;
public class Del extends AbstractOperation {
@SuppressWarnings("unchecked")
@Override
public void execute(BaseRedisAsyncCommands commands, T item, List> futures) {
futures.add(((RedisKeyAsyncCommands) commands).del(key(item)));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy