Class BigIntegerEmStdOperator.Context
java.lang.Object
io.deephaven.engine.table.impl.updateby.UpdateByOperator.Context
BaseObjectUpdateByOperator<BigDecimal>.Context
BaseBigNumberEmStdOperator<BigInteger>.Context
io.deephaven.engine.table.impl.updateby.emstd.BigIntegerEmStdOperator.Context
- All Implemented Interfaces:
SafeCloseable,AutoCloseable
- Enclosing class:
- BigIntegerEmStdOperator
-
Field Summary
Fields inherited from class io.deephaven.engine.table.impl.updateby.emstd.BaseBigNumberEmStdOperator.Context
alpha, curEma, curVariance, emaFillContext, emaValues, lastDt, lastStamp, objectValueChunk, oneMinusAlphaFields inherited from class io.deephaven.engine.table.impl.updateby.internal.BaseObjectUpdateByOperator.Context
curVal, outputFillContext, outputValuesFields inherited from class io.deephaven.engine.table.impl.updateby.UpdateByOperator.Context
affectedPosChunk, influencerPosChunk, nullCount -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaccumulateCumulative(@NotNull RowSequence inputKeys, @NotNull Chunk<? extends Values>[] valueChunkArr, @Nullable LongChunk<? extends Values> tsChunk, int len) For cumulative operators only, this method will be called to pass the input chunk data to the operator and produce the output data values.Methods inherited from class io.deephaven.engine.table.impl.updateby.emstd.BaseBigNumberEmStdOperator.Context
close, isValueValid, push, reset, setValueChunks, writeToOutputColumnMethods inherited from class io.deephaven.engine.table.impl.updateby.internal.BaseObjectUpdateByOperator.Context
accumulateRolling, writeNullToOutputChunk, writeToOutputChunkMethods inherited from class io.deephaven.engine.table.impl.updateby.UpdateByOperator.Context
pop, setPosChunks
-
Constructor Details
-
Context
protected Context(int affectedChunkSize, int influencerChunkSize)
-
-
Method Details
-
accumulateCumulative
public void accumulateCumulative(@NotNull @NotNull RowSequence inputKeys, @NotNull @NotNull Chunk<? extends Values>[] valueChunkArr, @Nullable @Nullable LongChunk<? extends Values> tsChunk, int len) Description copied from class:UpdateByOperator.ContextFor cumulative operators only, this method will be called to pass the input chunk data to the operator and produce the output data values.- Overrides:
accumulateCumulativein classBaseObjectUpdateByOperator<BigDecimal>.Context- Parameters:
inputKeys- the keys for the input data rows (also matches the output keys)valueChunkArr- the input data chunks needed by the operator for internal calculationstsChunk- the timestamp chunk for the input data (if applicable)len- the number of items in the input data chunks
-