Class BlobStreamAppendableColumn<DATA_TYPE>
java.lang.Object
com.illumon.iris.db.tables.appendable.BaseAppendableColumn<DATA_TYPE>
com.illumon.iris.db.tables.appendable.stream.StreamAppendableColumn<DATA_TYPE>
com.illumon.iris.db.tables.appendable.stream.BlobStreamAppendableColumn<DATA_TYPE>
- All Implemented Interfaces:
AppendableColumn<DATA_TYPE>
- Direct Known Subclasses:
ExternalizableStreamAppendableColumn
,SerializableStreamAppendableColumn
,StringStreamAppendableColumn
public abstract class BlobStreamAppendableColumn<DATA_TYPE> extends StreamAppendableColumn<DATA_TYPE>
Non-primitive AppendableColumn for streaming output to a CurrentByteBufferSink.
-
Field Summary
Fields inherited from interface com.illumon.iris.db.tables.appendable.AppendableColumn
DEFAULT_CHUNK_CAPACITY
-
Method Summary
Methods inherited from class com.illumon.iris.db.tables.appendable.stream.StreamAppendableColumn
addByte, addByte, addBytes, addBytes, addChar, addChar, addChars, addDouble, addDouble, addDoubles, addFloat, addFloat, addFloats, addFromBooleanChunk, addFromByteChunk, addFromCharChunk, addFromDoubleChunk, addFromFloatChunk, addFromIntChunk, addFromLongChunk, addFromObjectChunk, addFromShortChunk, addInt, addInt, addInts, addLong, addLong, addLongs, addShort, addShort, addShorts, close, force
Methods inherited from class com.illumon.iris.db.tables.appendable.BaseAppendableColumn
add, add, addBoolean, addBoolean, addBooleans, checkArrayAddBounds, encodeExternalizable, encodeSerializable, getAddHelper, getName, getType
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.illumon.iris.db.tables.appendable.AppendableColumn
addFromArray, addFromBoxedValue, addFromBoxedValue, addFromChunk, addFromChunkSource, addFromChunkSource, addFromChunkSource, addFromColumnSource, addFromColumnSource, addFromColumnSource, addFromColumnSource, addFromDataColumn
-
Method Details
-
add
Description copied from interface:AppendableColumn
Append a DATA_TYPE to this column.- Specified by:
add
in interfaceAppendableColumn<DATA_TYPE>
- Overrides:
add
in classBaseAppendableColumn<DATA_TYPE>
- Parameters:
value
- The value to append
-
toBytes
-