Package org.apache.hadoop.hbase.codec
Class CellCodec.CellEncoder
java.lang.Object
org.apache.hadoop.hbase.codec.BaseEncoder
org.apache.hadoop.hbase.codec.CellCodec.CellEncoder
- All Implemented Interfaces:
Codec.Encoder,CellOutputStream
- Enclosing class:
- CellCodec
-
Field Summary
Fields inherited from class org.apache.hadoop.hbase.codec.BaseEncoder
flushed, out -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate voidwrite(byte[] bytes, int offset, int length) Write int length followed by array bytes.voidwrite(ExtendedCell cell) Implementation must copy the entire state of the Cell.Methods inherited from class org.apache.hadoop.hbase.codec.BaseEncoder
checkFlushed, flush, getOuputStream
-
Constructor Details
-
CellEncoder
CellEncoder(OutputStream out)
-
-
Method Details
-
write
Description copied from interface:CellOutputStreamImplementation must copy the entire state of the Cell. If the written Cell is modified immediately after the write method returns, the modifications must have absolutely no effect on the copy of the Cell that was added in the write.- Specified by:
writein interfaceCellOutputStream- Specified by:
writein classBaseEncoder- Parameters:
cell- Cell to write out- Throws:
IOException
-
write
Write int length followed by array bytes.- Throws:
IOException
-