Package io.deephaven.engine.table
Interface ChunkSource.FillContext
- All Superinterfaces:
AutoCloseable
,Context
,SafeCloseable
- All Known Implementing Classes:
ArrowWrapperTools.FillContext
,BaseAggregateSlicedColumnSource.AggregateSlicedFillContext
,PagingContextHolder
,RangeAggregateColumnSource.RangeAggregateFillContext
,ViewColumnSource.VCSFillContext
- Enclosing interface:
- ChunkSource<ATTR extends Any>
Marker interface for
Context
s that are used in
ChunkSource.fillChunk(FillContext, WritableChunk, RowSequence)
.-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
Returns true if this Context contains internal state that limits its capacity to the originally requested capacity.
-
Method Details
-
supportsUnboundedFill
default boolean supportsUnboundedFill()Returns true if this Context contains internal state that limits its capacity to the originally requested capacity. If false is returned, then fillChunk operations may be arbitrarily large.- Returns:
- if this context has a limited capacity
-