abstract class InputStream
available |
open fun available(): Int |
close |
open fun close(): Unit |
read |
abstract fun read(): Int open fun read(b: ByteArray): Int open fun read(b: ByteArray, offset: Int, len: Int): Int |
skip |
open fun skip(n: Long): Long |