Interface HostColumnVector.EventHandler

Enclosing class:
HostColumnVector

public static interface HostColumnVector.EventHandler
Interface to handle events for this HostColumnVector. Only invoked during close, hence `onClosed` is the only event.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onClosed(HostColumnVector cv, int refCount)
    `onClosed` is invoked with the updated `refCount` during `close`.
  • Method Details

    • onClosed

      void onClosed(HostColumnVector cv, int refCount)
      `onClosed` is invoked with the updated `refCount` during `close`. The last invocation of `onClosed` will be with `refCount=0`.
      Parameters:
      cv - reference to the HostColumnVector we are closing
      refCount - the updated ref count for this HostColumnVector at the time of invocation