Interface SSTableReadsListener


public interface SSTableReadsListener
Listener for receiving notifications associated with reading SSTables.
  • Field Details

  • Method Details

    • onSSTableSkipped

      default void onSSTableSkipped(SSTableReader sstable, SSTableReadsListener.SkippingReason reason)
      Handles notification that the specified SSTable has been skipped during a single partition query.
      Parameters:
      sstable - the SSTable reader
      reason - the reason for which the SSTable has been skipped
    • onSSTableSelected

      default void onSSTableSelected(SSTableReader sstable, SSTableReadsListener.SelectionReason reason)
      Handles notification that the specified SSTable has been selected during a single partition query.
      Parameters:
      sstable - the SSTable reader
      indexEntry - the index entry
      reason - the reason for which the SSTable has been selected
    • onScanningStarted

      default void onScanningStarted(SSTableReader sstable)
      Handles notification that the specified SSTable is being scanned during a partition range query.
      Parameters:
      sstable - the SSTable reader of the SSTable being scanned.