Package ai.rapids.cudf
Interface ColumnVector.EventHandler
- Enclosing class:
- ColumnVector
public static interface ColumnVector.EventHandler
Interface to handle events for this ColumnVector. Only invoked during
close, hence `onClosed` is the only event.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onClosed
(ColumnVector cv, int refCount) `onClosed` is invoked with the updated `refCount` during `close`.
-
Method Details
-
onClosed
`onClosed` is invoked with the updated `refCount` during `close`. The last invocation of `onClosed` will be with `refCount=0`.- Parameters:
cv
- reference to the ColumnVector we are closingrefCount
- the updated ref count for this ColumnVector at the time of invocation
-