Package-level declarations

Types

Link copied to clipboard
open class BufferedOutputStream(val out: OutputStream, bufferSize: Int = 8192) : OutputStream

The class implements a buffered output stream. By setting up such an output stream, an application can write bytes to the underlying output stream without necessarily causing a call to the underlying system for each byte written.

Link copied to clipboard

An OutputStream that counts the amount of bytes written to it

Link copied to clipboard

A DataOutputStream is a OutputStream that can write primitive types

Link copied to clipboard
expect abstract class OutputStream
actual abstract class OutputStream