Package io.deephaven.engine.rowset
Interface RowKeyRangeShiftCallback
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface to pass to
RowSetShiftData.apply(RowKeyRangeShiftCallback) or
RowSetShiftData.unapply(RowKeyRangeShiftCallback) to get information about each shift recorded.-
Method Summary
Modifier and TypeMethodDescriptionvoidshift(long beginRange, long endRange, long shiftDelta) Process the shift.
-
Method Details
-
shift
void shift(long beginRange, long endRange, long shiftDelta) Process the shift.- Parameters:
beginRange- start of range (inclusive)endRange- end of range (inclusive)shiftDelta- amount range has moved by
-