Class HashHandler.BuildHandler
java.lang.Object
io.deephaven.engine.table.impl.by.HashHandler.BuildHandler
- All Implemented Interfaces:
HashHandler
- Enclosing interface:
- HashHandler
When building, this operation is never invoked. Extending this class makes it simpler to have a build only
callback.
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.deephaven.engine.table.impl.by.HashHandler
HashHandler.BuildHandler, HashHandler.ProbeHandler
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
doMissing
(int chunkPosition) Called during probe when a value is not found in main or overflow.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.deephaven.engine.table.impl.by.HashHandler
doMainFound, doMainInsert, doMoveMain, doOverflowFound, doOverflowInsert, doPromoteOverflow, onNextChunk
-
Constructor Details
-
BuildHandler
public BuildHandler()
-
-
Method Details
-
doMissing
public void doMissing(int chunkPosition) Description copied from interface:HashHandler
Called during probe when a value is not found in main or overflow.- Specified by:
doMissing
in interfaceHashHandler
- Parameters:
chunkPosition
- the position in the chunk
-