ByteStreamWriter

Represents a writable stream of bytes. This interface closely resembles OutputStream, minus the functionality that wouldn't have a clearly defined behavior in the context of Context propagation.

Companion:
object
class Object
trait Matchable
class Any

Value members

Abstract methods

def write(bytes: Array[Byte]): Unit

Writes all bytes into the stream.

Writes all bytes into the stream.

def write(bytes: Array[Byte], offset: Int, count: Int): Unit

Writes a portion of the provided bytes into the stream, starting from provided offset.

Writes a portion of the provided bytes into the stream, starting from provided offset.

def write(byte: Int): Unit

Write a single byte into the stream.

Write a single byte into the stream.