expect interface Closeable
abstract fun close(): Unit |
abstract class Input : Closeable
Usually shouldn't be implemented directly. Inherit Input instead. |
|
interface ObjectPool<T : Any> : Closeable |
|
abstract class Output : Appendable, Closeable
This shouldn't be implemented directly. Inherit Output instead. |