com.lambdaworks.redis.output.ValueSetOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson Show documentation
Show all versions of redisson Show documentation
Redis Java client with features of In-Memory Data Grid
// Copyright (C) 2011 - Will Glozer. All rights reserved.
package com.lambdaworks.redis.output;
import com.lambdaworks.redis.codec.RedisCodec;
import com.lambdaworks.redis.protocol.CommandOutput;
import java.nio.ByteBuffer;
import java.util.HashSet;
import java.util.Set;
/**
* {@link Set} of value output.
*
* @param Value type.
*
* @author Will Glozer
*/
public class ValueSetOutput extends CommandOutput> {
public ValueSetOutput(RedisCodec codec) {
super(codec, new HashSet());
}
@Override
public void set(ByteBuffer bytes) {
output.add(bytes == null ? null : codec.decodeMapValue(bytes));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy