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

com.redis.spring.batch.common.ValueReader Maven / Gradle / Ivy

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

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

public class ValueReader extends AbstractOperationExecutor {

	private final Operation operation;

	public ValueReader(AbstractRedisClient client, RedisCodec codec, Operation operation) {
		super(client, codec);
		this.operation = operation;
	}

	@Override
	protected Operation operation() {
		return operation;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy