public interface RowStore extends TableSink
RowStore
you can stream table data into it,
and then retrieve it as a random-access StarTable later. This interface
abstracts that functionality so you don't need to worry how the
storage is handled. You should usually obtain a RowStore
instance from a StoragePolicy
.StoragePolicy
Modifier and Type | Method and Description |
---|---|
StarTable |
getStarTable()
Obtains a StarTable which contains the data and metadata that have
been written into this sink.
|
acceptMetadata, acceptRow, endRows
StarTable getStarTable()
TableSink.endRows()
; failing to observe this sequence may
earn you an IllegalStateException