DisposableHandle
interface DisposableHandle : Registration (source)A handle to an allocated object that can be disposed to make it eligible for garbage collection.
Functions
abstract fun dispose(): UnitDisposes the corresponding object, making it eligible for garbage collection. Repeated invocation of this function has no effect. |
Inheritors
object NonDisposableHandle : DisposableHandleNo-op implementation of DisposableHandle. |