Class: ActionView::StreamingTemplateRenderer::Body
- Defined in:
- actionview/lib/action_view/renderer/streaming_template_renderer.rb
Overview
A valid Rack::Body (i.e. it responds to each). It is initialized with a block that, when called, starts rendering the template.
Instance Method Summary collapse
- #each(&block) ⇒ Object
-
#initialize(&start) ⇒ Body
constructor
A new instance of Body.
Constructor Details
#initialize(&start) ⇒ Body
Returns a new instance of Body.
15 16 17 |
# File 'actionview/lib/action_view/renderer/streaming_template_renderer.rb', line 15 def initialize(&start) @start = start end |
Instance Method Details
#each(&block) ⇒ Object
19 20 21 22 23 24 25 26 27 |
# File 'actionview/lib/action_view/renderer/streaming_template_renderer.rb', line 19 def each(&block) begin @start.call(block) rescue Exception => exception log_error(exception) block.call ActionView::Base.streaming_completion_on_exception end self end |