@private
# File lib/em/processes.rb, line 77 def initialize cb @cb = cb @output = [] end
# File lib/em/processes.rb, line 81 def receive_data data @output << data end
# File lib/em/processes.rb, line 84 def unbind @cb.call @output.join(''), get_status if @cb end