All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.redis.spring.batch.writer.operation.Noop Maven / Gradle / Ivy

There is a newer version: 4.0.7
Show newest version
package com.redis.spring.batch.writer.operation;

import java.util.List;

import com.redis.spring.batch.writer.Operation;

import io.lettuce.core.RedisFuture;
import io.lettuce.core.api.async.BaseRedisAsyncCommands;

public class Noop implements Operation {

    @Override
    public void execute(BaseRedisAsyncCommands commands, T item, List> futures) {
        // do nothing
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy