Package org.apache.druid.segment.data
Interface ColumnarLongsSerializer
-
- All Superinterfaces:
Serializer
- All Known Implementing Classes:
BlockLayoutColumnarLongsSerializer
,EntireLayoutColumnarLongsSerializer
,IntermediateColumnarLongsSerializer
public interface ColumnarLongsSerializer extends Serializer
Serializer that producesColumnarLongs
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(long value)
void
open()
int
size()
-
Methods inherited from interface org.apache.druid.segment.serde.Serializer
getSerializedSize, writeTo
-
-
-
-
Method Detail
-
open
void open() throws IOException
- Throws:
IOException
-
size
int size()
-
add
void add(long value) throws IOException
- Throws:
IOException
-
-