Package-level declarations

Types

Link copied to clipboard
abstract class BaseStreamSender<T>(destination: StreamDestination<T>)
Link copied to clipboard
class ByteStreamSender(val info: ByteStreamInfo, destination: StreamDestination<ByteArray>) : BaseStreamSender<ByteArray>
Link copied to clipboard
Link copied to clipboard
class TextStreamSender(val info: TextStreamInfo, destination: StreamDestination<String>) : BaseStreamSender<String>

Functions

Link copied to clipboard
suspend fun ByteStreamSender.write(input: InputStream)

Reads the input stream and sends it to the data stream.

suspend fun ByteStreamSender.write(source: Source)

Reads the source and sends it to the data stream.

Link copied to clipboard
suspend fun ByteStreamSender.writeFile(filePath: String)

Reads the file and writes it to the data stream.