Class NaturalJoinModifiedSlotTracker

java.lang.Object
io.deephaven.engine.table.impl.NaturalJoinModifiedSlotTracker

public class NaturalJoinModifiedSlotTracker extends Object
A tracker for modified join hash table slots. After adding an entry, you get back a cookie, which must be passed in on future modification operations for that slot. To process the entries after modifications are complete, call forAllModifiedSlots(ModifiedSlotConsumer).
  • Field Details

  • Constructor Details

    • NaturalJoinModifiedSlotTracker

      public NaturalJoinModifiedSlotTracker()
  • Method Details

    • addMain

      public long addMain(long cookie, int slot, long originalRightValue, byte flags)
      Add a slot in the main table.
      Parameters:
      slot - the slot to add.
      originalRightValue - if we are the addition of the slot, what the right value was before our modification (otherwise ignored)
      flags - the flags to or into our state
      Returns:
      the cookie for future access
    • moveTableLocation

      public void moveTableLocation(long cookie, int oldTableLocation, int newTableLocation)
      Move a main table location.
      Parameters:
      oldTableLocation - the old hash slot
      newTableLocation - the new hash slot