Class: Async::HTTP::Protocol::HTTP1::Response

Inherits:
Response
  • Object
show all
Defined in:
lib/async/http/protocol/http1/response.rb

Instance Attribute Summary

Attributes inherited from Response

#connection

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Response

#peer, #remote_address, #remote_address=

Constructor Details

#initialize(connection, version, status, reason, headers, body) ⇒ Response

Returns a new instance of Response.

Parameters:

  • reason (String)

    HTTP response line reason, ignored.



35
36
37
38
39
40
41
# File 'lib/async/http/protocol/http1/response.rb', line 35

def initialize(connection, version, status, reason, headers, body)
	@connection = connection
	
	protocol = connection.upgrade?(headers)
	
	super(version, status, headers, body, protocol)
end

Class Method Details

.read(connection, request) ⇒ Object



28
29
30
31
32
# File 'lib/async/http/protocol/http1/response.rb', line 28

def self.read(connection, request)
	if parts = connection.read_response(request.method)
		self.new(connection, *parts)
	end
end

Instance Method Details

#hijack!Object



47
48
49
# File 'lib/async/http/protocol/http1/response.rb', line 47

def hijack!
	@connection.hijack!
end

#hijack?Boolean

Returns:

  • (Boolean)


43
44
45
# File 'lib/async/http/protocol/http1/response.rb', line 43

def hijack?
	@body.nil?
end