A delegate class to manage the processing for a single executed process on the remote host. It opens a channel, executes the process on it, and manages the various callbacks.
This service is typically used like this:
Net::SSH.start( 'host', 'user' ) do |session| session.process.open( "bc" ) do |process| ... end end
Methods