com.redis.spring.batch.writer.operation.Noop Maven / Gradle / Ivy
The newest version!
package com.redis.spring.batch.writer.operation;
import org.springframework.batch.item.Chunk;
import com.redis.spring.batch.common.Operation;
import io.lettuce.core.RedisFuture;
import io.lettuce.core.api.async.BaseRedisAsyncCommands;
public class Noop implements Operation {
@Override
public void execute(BaseRedisAsyncCommands commands, Chunk extends T> inputs,
Chunk> outputs) {
// do nothing
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy