class EventMachine::StderrHandler
Public Class Methods
new(connection)
click to toggle source
# File lib/panoptimon/eventmonkeypatch/popen3.rb, line 10 def initialize(connection); @connection = connection; end
Public Instance Methods
receive_data(data)
click to toggle source
# File lib/panoptimon/eventmonkeypatch/popen3.rb, line 11 def receive_data(data); @connection.receive_stderr(data); end
unbind()
click to toggle source
# File lib/panoptimon/eventmonkeypatch/popen3.rb, line 12 def unbind; detach; end