OutputStore

interface OutputStore: ChannelStore<String, OutputChannel<String>, OutputStore>, Any

Fields

Name Description
abstract stdOut: OutputChannel<String>
abstract stdErr: OutputChannel<String>
abstract warnings: OutputChannel<Warning>

CompanionObject

OutputStore

interface OutputStore: ChannelStore<String, OutputChannel<String>, OutputStore>, Any

Fields

Name Description
const STDOUT: String
const STDERR: String

Methods

fromStandard

fun fromStandard(output: OutputChannel<String>, error: OutputChannel<String>, warnings: OutputChannel<Warning>): OutputStore

Parameters

Name Description
output: OutputChannel<String>
error: OutputChannel<String>
warnings: OutputChannel<Warning>

ReturnValue

Name Description
OutputStore

of

fun of(channels: Map<String, OutputChannel<String>>, warnings: OutputChannel<Warning>): OutputStore

Parameters

Name Description
channels: Map<String, OutputChannel<String>>
warnings: OutputChannel<Warning>

ReturnValue

Name Description
OutputStore