StdioTransport.attach constructor

StdioTransport.attach(
  1. Process process, {
  2. String name = 'stdio',
})

Connects to an already-running process.

For a supervisor that owns process lifetime itself.

Implementation

factory StdioTransport.attach(Process process, {String name = 'stdio'}) =>
    StdioTransport._(process, name);