Package org.apache.bookkeeper.proto
Class BookieProtoEncoding.RequestEnDecoderV3
- java.lang.Object
-
- org.apache.bookkeeper.proto.BookieProtoEncoding.RequestEnDecoderV3
-
- All Implemented Interfaces:
BookieProtoEncoding.EnDecoder
- Enclosing class:
- BookieProtoEncoding
public static class BookieProtoEncoding.RequestEnDecoderV3 extends java.lang.Object implements BookieProtoEncoding.EnDecoder
A request encoder/decoder for the Bookkeeper protocol version 3.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) com.google.protobuf.ExtensionRegistryextensionRegistry
-
Constructor Summary
Constructors Constructor Description RequestEnDecoderV3(com.google.protobuf.ExtensionRegistry extensionRegistry)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectdecode(io.netty.buffer.ByteBuf packet)Decode a packet into an object.java.lang.Objectencode(java.lang.Object msg, io.netty.buffer.ByteBufAllocator allocator)Encode a object into channel buffer.
-
-
-
Method Detail
-
decode
public java.lang.Object decode(io.netty.buffer.ByteBuf packet) throws java.lang.ExceptionDescription copied from interface:BookieProtoEncoding.EnDecoderDecode a packet into an object.- Specified by:
decodein interfaceBookieProtoEncoding.EnDecoder- Parameters:
packet- received packet.- Returns:
- parsed object.
- Throws:
java.lang.Exception
-
encode
public java.lang.Object encode(java.lang.Object msg, io.netty.buffer.ByteBufAllocator allocator) throws java.lang.ExceptionDescription copied from interface:BookieProtoEncoding.EnDecoderEncode a object into channel buffer.- Specified by:
encodein interfaceBookieProtoEncoding.EnDecoder- Parameters:
msg- object.- Returns:
- encode buffer.
- Throws:
java.lang.Exception
-
-