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

com.redis.spring.batch.writer.DumpItemWriter Maven / Gradle / Ivy

The newest version!
package com.redis.spring.batch.writer;

import com.redis.spring.batch.writer.operation.Restore;

import io.lettuce.core.AbstractRedisClient;
import io.lettuce.core.codec.ByteArrayCodec;

public class DumpItemWriter extends KeyValueItemWriter {

	public DumpItemWriter(AbstractRedisClient client) {
		super(client, ByteArrayCodec.INSTANCE);
	}

	@Override
	protected Restore writeOperation() {
		return new Restore<>();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy