Parent

Methods

Class/Module Index [+]

Quicksearch

Twitter::Streaming::Connection

Public Instance Methods

stream(request, response) click to toggle source
# File lib/twitter/streaming/connection.rb, line 8
def stream(request, response)
  client_context = OpenSSL::SSL::SSLContext.new
  client         = TCPSocket.new(Resolv.getaddress(request.uri.host), request.uri.port)
  ssl_client     = OpenSSL::SSL::SSLSocket.new(client, client_context)
  ssl_client.connect
  request.stream(ssl_client)
  while body = ssl_client.readpartial(1024) # rubocop:disable AssignmentInCondition, WhileUntilModifier
    response << body
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.