Closeable

actual typealias Closeable = java.io.Closeable
actual interface Closeable

Inheritors

Functions

Link copied to clipboard
expect abstract fun close()

Closes this object and releases the resources it holds. It is an error to use an object after it has been closed. It is safe to close an object more than once.

actual abstract fun close()