Class: Rack::Events::EventedBodyProxy

Inherits:
BodyProxy
  • Object
show all
Defined in:
lib/rack/events.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from BodyProxy

#close, #closed?, #method_missing, #respond_to?

Constructor Details

#initialize(body, request, response, handlers, &block) ⇒ EventedBodyProxy

Returns a new instance of EventedBodyProxy.



81
82
83
84
85
86
# File 'lib/rack/events.rb', line 81

def initialize body, request, response, handlers, &block
  super(body, &block)
  @request  = request
  @response = response
  @handlers = handlers
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Rack::BodyProxy

Instance Attribute Details

#requestObject (readonly)

Returns the value of attribute request.



79
80
81
# File 'lib/rack/events.rb', line 79

def request
  @request
end

#responseObject (readonly)

Returns the value of attribute response.



79
80
81
# File 'lib/rack/events.rb', line 79

def response
  @response
end

Instance Method Details

#eachObject



88
89
90
91
# File 'lib/rack/events.rb', line 88

def each
  @handlers.reverse_each { |handler| handler.on_send request, response }
  super
end