Class: EventMachine::DelegatedHttpResponse
- Inherits:
-
HttpResponse
- Object
- HttpResponse
- EventMachine::DelegatedHttpResponse
- Extended by:
- Forwardable
- Defined in:
- lib/evma_httpserver/response.rb
Instance Attribute Summary
Attributes inherited from HttpResponse
#chunks, #content, #headers, #multiparts, #status
Instance Method Summary collapse
-
#initialize(dele) ⇒ DelegatedHttpResponse
constructor
A new instance of DelegatedHttpResponse.
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.
307 308 309 310 |
# File 'lib/evma_httpserver/response.rb', line 307 def initialize dele super() @delegate = dele end |