FlushedInputStream

Fixes an Bug with the Android region decoder.

open class FlushedInputStream : FilterInputStream

Constructors

FlushedInputStream
Link copied to clipboard

The constructor that takes in the InputStream reference.

open fun FlushedInputStream(inputStream: InputStream)

Functions

available
Link copied to clipboard
open fun available(): Int
close
Link copied to clipboard
open fun close()
mark
Link copied to clipboard
open fun mark(p: Int)
markSupported
Link copied to clipboard
open fun markSupported(): Boolean
read
Link copied to clipboard
open fun read(): Int
reset
Link copied to clipboard
open fun reset()
skip
Link copied to clipboard
open fun skip(p: Long): Long

Overriding the skip method to actually skip n bytes. This implementation makes sure that we actually skip the n bytes no matter what. {@inheritDoc}

open fun skip(n: Long): Long