class EventMachine::Protocols::HttpClient

def connection_completed

requests on a single connection.
NB: This naive technique won't work when we have to support multiple
That allows #unbind to know whether there was a successful connection.
AND, we set an instance variable to indicate we passed through here.
We send the request when we get a connection.
def connection_completed
  @connected = true
  send_request @args
end