class EventMachine::Protocols::HttpClient2::Request

def receive_sized_text text


specified by the content-length header.
At the present time, we only handle contents that have a length
--
def receive_sized_text text
  @content = text
  @conn.pop_request
  succeed(self)
end