javadocs added

pull/748/head
Nikita 8 years ago
parent a913ca9d72
commit 33660f317a

@ -17,6 +17,11 @@ package org.redisson.client.codec;
import org.redisson.client.protocol.Decoder;
/**
*
* @author Nikita Koksharov
*
*/
public class DelegateDecoderCodec extends StringCodec {
private final Codec delegate;

@ -22,6 +22,11 @@ import org.redisson.client.protocol.Decoder;
import io.netty.buffer.ByteBuf;
/**
*
* @author Nikita Koksharov
*
*/
public class DoubleCodec extends StringCodec {
public static final DoubleCodec INSTANCE = new DoubleCodec();

@ -17,6 +17,11 @@ package org.redisson.client.codec;
import org.redisson.client.protocol.Encoder;
/**
*
* @author Nikita Koksharov
*
*/
public class GeoEntryCodec extends StringCodec {
private final ThreadLocal<Integer> pos = new ThreadLocal<Integer>() {

@ -22,6 +22,11 @@ import org.redisson.client.protocol.Decoder;
import io.netty.buffer.ByteBuf;
/**
*
* @author Nikita Koksharov
*
*/
public class IntegerCodec extends StringCodec {
public static final IntegerCodec INSTANCE = new IntegerCodec();

@ -22,6 +22,11 @@ import org.redisson.client.protocol.Decoder;
import io.netty.buffer.ByteBuf;
/**
*
* @author Nikita Koksharov
*
*/
public class LongCodec extends StringCodec {
public static final LongCodec INSTANCE = new LongCodec();

@ -17,6 +17,11 @@ package org.redisson.client.codec;
import org.redisson.client.protocol.Encoder;
/**
*
* @author Nikita Koksharov
*
*/
public class ScoredCodec extends StringCodec {
private final Codec delegate;

@ -25,6 +25,11 @@ import org.redisson.client.protocol.Encoder;
import io.netty.buffer.ByteBuf;
import io.netty.util.CharsetUtil;
/**
*
* @author Nikita Koksharov
*
*/
public class StringCodec implements Codec {
public static final StringCodec INSTANCE = new StringCodec();

Loading…
Cancel
Save