Class RspRowSequence
- All Implemented Interfaces:
RowSequence,LongSizedDataStructure,SafeCloseable,AutoCloseable
-
Field Summary
Fields inherited from interface io.deephaven.engine.rowset.RowSequence
NULL_ROW_KEY -
Method Summary
Modifier and TypeMethodDescriptionasRowSet()Get aRowSetrepresentation of thisRowSequence.voidclose()Free any resources associated with this object.copy(RspRowSequence other) voidfillRowKeyChunk(WritableLongChunk<? super OrderedRowKeys> chunkToFill) Fill the suppliedWritableLongChunkwith individual row keys from thisRowSequence.voidfillRowKeyRangesChunk(WritableLongChunk<OrderedRowKeyRanges> chunkToFill) Fill the suppliedWritableLongChunkwith row key ranges from thisRowSequence.longGet the first row key in thisRowSequence.booleanFor as long as the consumer wants more row keys, call accept on the consumer with the individual row key instances in this RowSequence, in increasing order.booleanFor as long as the consumer wants more ranges, call accept on the consumer with the individual row key ranges in this RowSequence, in increasing order.longGet an estimate of the average (mean) length of runs of adjacent row keys in thisRowSequence.getRowSequenceByKeyRange(long startRowKeyInclusive, long endRowKeyInclusive) Get an ordered subset of the row keys in thisRowSequencefor a row key range.getRowSequenceByPosition(long startPositionInclusive, long length) Get an ordered subset of the row keys in thisRowSequencefor a position range.Get anRowSequence.Iteratorover thisRowSequence.booleanisEmpty()True if the size of thisRowSequenceis zero.longGet the last row key in thisRowSequence.longlongsize()Get the number of row keys in thisRowSequence.Methods inherited from class io.deephaven.engine.rowset.impl.RowSequenceAsChunkImpl
asRowKeyChunk, asRowKeyRangesChunk, closeRowSequenceAsChunkImpl, invalidateRowSequenceAsChunkImpl, runsUpperBoundMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.deephaven.util.datastructures.LongSizedDataStructure
intSize, intSizeMethods inherited from interface io.deephaven.engine.rowset.RowSequence
forAllRowKeyRanges, forAllRowKeys, isContiguous
-
Method Details
-
close
public void close()Description copied from interface:RowSequenceFree any resources associated with this object.
Using any
RowSequencemethods afterclose()is an error and may produce exceptions or undefined results.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceRowSequence- Specified by:
closein interfaceSafeCloseable- Overrides:
closein classRowSequenceAsChunkImpl
-
firstRowKey
public long firstRowKey()Description copied from interface:RowSequenceGet the first row key in thisRowSequence.- Returns:
- The first row key, or
RowSequence.NULL_ROW_KEYif there is none.
-
lastRowKey
public long lastRowKey()Description copied from interface:RowSequenceGet the last row key in thisRowSequence.- Specified by:
lastRowKeyin interfaceRowSequence- Specified by:
lastRowKeyin classRowSequenceAsChunkImpl- Returns:
- The last row key, or
RowSequence.NULL_ROW_KEYif there is none.
-
getAverageRunLengthEstimate
public long getAverageRunLengthEstimate()Description copied from interface:RowSequenceGet an estimate of the average (mean) length of runs of adjacent row keys in this
RowSequence.Implementations should strive to keep this method efficient (O(1) preferred) at the expense of accuracy.
Empty
RowSequenceshould return an arbitrary valid value, usually 1.- Returns:
- An estimate of the average run length in this
RowSequence, in [1,size()]
-
rangesCountUpperBound
public long rangesCountUpperBound()- Specified by:
rangesCountUpperBoundin classRowSequenceAsChunkImpl
-
copy
-
getRowSequenceIterator
Description copied from interface:RowSequenceGet anRowSequence.Iteratorover thisRowSequence.- Returns:
- A new iterator, positioned at the first row key
-
getRowSequenceByPosition
Description copied from interface:RowSequenceGet an ordered subset of the row keys in this
RowSequencefor a position range. The result will contain the set of row keys inthisthat lie at positions in the half-open range [startPositionInclusive,startPositionInclusive + length). The returned reference is owned by the caller, who should callclose()when it is done with it.- Parameters:
startPositionInclusive- The position of the first row key to includelength- The number of row keys to include- Returns:
- The subset as an
RowSequence, which may bethis
-
getRowSequenceByKeyRange
Description copied from interface:RowSequenceGet an ordered subset of the row keys in this
RowSequencefor a row key range. The returned set will be the intersection of the row keys inthiswith the row keys in the closed interval [startRowKeyInclusive,endRowKeyInclusive]. The returned reference is owned by the caller, who should callclose()when it is done with it.- Parameters:
startRowKeyInclusive- The minimum row key to includeendRowKeyInclusive- The maximum row key to include- Returns:
- The subset as an
RowSequence, which may bethis
-
asRowSet
Description copied from interface:RowSequenceGet aRowSetrepresentation of thisRowSequence.- Returns:
- A
RowSetrepresentation for the same row keys in the same order
-
fillRowKeyChunk
Description copied from interface:RowSequenceFill the supplied
WritableLongChunkwith individual row keys from thisRowSequence.The chunk's capacity is assumed to be big enough.
- Parameters:
chunkToFill- A chunk to fill with individual row keys
-
fillRowKeyRangesChunk
Description copied from interface:RowSequenceFill the supplied
WritableLongChunkwith row key ranges from thisRowSequence.The chunk's capacity is assumed to be big enough.
- Parameters:
chunkToFill- A chunk to fill with row key ranges
-
size
public long size()Description copied from interface:RowSequenceGet the number of row keys in thisRowSequence.- Returns:
- The size, in [0,
Long.MAX_VALUE]
-
isEmpty
public boolean isEmpty()Description copied from interface:RowSequenceTrue if the size of thisRowSequenceis zero.- Returns:
- True if there are no elements in this
RowSequence.
-
forEachRowKey
Description copied from interface:RowSequenceFor as long as the consumer wants more row keys, call accept on the consumer with the individual row key instances in this RowSequence, in increasing order.- Parameters:
lac- a consumer to feed the individual row key values to.- Returns:
- false if the consumer provided ever returned false, true otherwise.
-
forEachRowKeyRange
Description copied from interface:RowSequenceFor as long as the consumer wants more ranges, call accept on the consumer with the individual row key ranges in this RowSequence, in increasing order.- Parameters:
lrac- a consumer to feed the individual row key values to.- Returns:
- false if the consumer provided ever returned false, true otherwise.
-