IPWorks SSH 2020 Kotlin Edition

Questions / Feedback?

Stdout Event

Fired when data (complete lines) come in through stdout.

Syntax

public open class DefaultSshplexEventListener : SshplexEventListener {
  ...
  public override fun stdout(e: SshplexStdoutEvent) {}
  ...
}

public class SshplexStdoutEvent {
  val operationId: String?
  val text: ByteArray?
}

Remarks

The Stdout event is fired every time the process on the remote host outputs a line in its standard output. The incoming data is provided through the Text parameter.

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks SSH 2020 Kotlin Edition - Version 20.0 [Build 7941]