class Net::SSH::Connection::EventLoop

def process(wait = nil, &block)

if block returns false for that session
if a block is given a session will be removed from loop
process until timeout
def process(wait = nil, &block)
  return false unless ev_preprocess(&block)
  ev_select_and_postprocess(wait)
end