module EventMachine::Protocols::LineProtocol

def receive_data data

Other tags:
    Private: -
def receive_data data
  (@buf ||= '') << data
  while @buf.slice!(/(.*?)\r?\n/)
    receive_line($1)
  end
end

def receive_line(line)

Invoked with lines received over the network
def receive_line(line)
  # stub
end