Class: EventMachine::DelegatedHttpResponse

Inherits:
HttpResponse show all
Extended by:
Forwardable
Defined in:
lib/em-http-server/response.rb

Instance Attribute Summary

Attributes inherited from HttpResponse

#chunks, #content, #headers, #multiparts, #status, #status_string

Instance Method Summary collapse

Methods inherited from HttpResponse

#add_set_cookie, #chunk, concoct_multipart_boundary, #content_type, #fixup_headers, #keep_connection_open, #multipart, #send_body, #send_chunks, #send_content, #send_headers, #send_multiparts, #send_redirect, #send_response, #send_trailer, #set_cookie

Constructor Details

#initialize(dele) ⇒ DelegatedHttpResponse

Returns a new instance of DelegatedHttpResponse.



309
310
311
312
# File 'lib/em-http-server/response.rb', line 309

def initialize dele
	super()
	@delegate = dele
end