This commit is contained in:
JongYoonLim 2015-03-19 15:03:15 +09:00 committed by Norman Maurer
parent 59a042aae4
commit 5dd3e883b1
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ import io.netty.handler.codec.memcache.AbstractMemcacheObjectEncoder;
import io.netty.util.CharsetUtil; import io.netty.util.CharsetUtil;
/** /**
* A {@link MessageToByteEncoder} that encodes binary memache messages into bytes. * A {@link MessageToByteEncoder} that encodes binary memcache messages into bytes.
*/ */
public abstract class AbstractBinaryMemcacheEncoder<M extends BinaryMemcacheMessage> public abstract class AbstractBinaryMemcacheEncoder<M extends BinaryMemcacheMessage>
extends AbstractMemcacheObjectEncoder<M> { extends AbstractMemcacheObjectEncoder<M> {

View File

@ -137,7 +137,7 @@ public interface BinaryMemcacheMessage extends MemcacheMessage {
/** /**
* Sets the opaque value. * Sets the opaque value.
* *
* @param opaque the opqaue value to use. * @param opaque the opaque value to use.
*/ */
BinaryMemcacheMessage setOpaque(int opaque); BinaryMemcacheMessage setOpaque(int opaque);

View File

@ -20,7 +20,7 @@ import io.netty.channel.ChannelHandlerAppender;
/** /**
* The full server codec that combines the correct encoder and decoder. * The full server codec that combines the correct encoder and decoder.
* <p/> * <p/>
* Use this codec if you need to implement a server that speaks the memache binary protocol. * Use this codec if you need to implement a server that speaks the memcache binary protocol.
* Internally, it combines the {@link BinaryMemcacheRequestDecoder} and the * Internally, it combines the {@link BinaryMemcacheRequestDecoder} and the
* {@link BinaryMemcacheResponseEncoder} to request decoding and response encoding. * {@link BinaryMemcacheResponseEncoder} to request decoding and response encoding.
*/ */