Package org.apache.druid.segment.data
Interface ColumnarDoublesSerializer
-
- All Superinterfaces:
Serializer
- All Known Implementing Classes:
BlockLayoutColumnarDoublesSerializer,EntireLayoutColumnarDoublesSerializer
public interface ColumnarDoublesSerializer extends Serializer
Serializer that producesColumnarDoubles.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(double value)voidopen()intsize()-
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(double value) throws IOException
- Throws:
IOException
-
-