pub fn spawn_stdout_pump(
stdout: Box<dyn Read + Send>,
activity_timestamp: SharedActivityTimestamp,
tx: SyncSender<Result<Vec<u8>>>,
cancel: Arc<AtomicBool>,
) -> JoinHandle<()>Expand description
Spawn a thread to pump stdout data from a reader into a channel.