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
-
Method Summary
Modifier and TypeMethodDescriptionprivate void
write
(byte[] bytes, int offset, int length) Write int length followed by array bytes.void
write
(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:CellOutputStream
Implementation 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:
write
in interfaceCellOutputStream
- Specified by:
write
in classBaseEncoder
- Parameters:
cell
- Cell to write out- Throws:
IOException
-
write
Write int length followed by array bytes.- Throws:
IOException
-