Package com.illumon.iris.db.v2.sources
Interface FillFromUnordered
public interface FillFromUnordered
-
Method Summary
Modifier and TypeMethodDescriptionvoid
fillFromChunkUnordered
(WritableChunkSink.FillFromContext context, WritableChunk<? super Attributes.Values> dest, LongChunk<? extends Attributes.KeyIndices> keys) Populates a contiguous portion of the given destination chunk with data corresponding to the keys from the givenLongChunk
.
-
Method Details
-
fillFromChunkUnordered
void fillFromChunkUnordered(@NotNull WritableChunkSink.FillFromContext context, @NotNull WritableChunk<? super Attributes.Values> dest, @NotNull LongChunk<? extends Attributes.KeyIndices> keys) Populates a contiguous portion of the given destination chunk with data corresponding to the keys from the givenLongChunk
.- Parameters:
context
- A context containing all mutable/state related data used in retrieving the Chunk.dest
- The chunk to be populated according tokeys
keys
- A chunk of individual, not assumed to be ordered keys to be fetched
-