instance method
supports_streaming?
Ruby on Rails 4.0.13
Since v3.1.12Signature
supports_streaming?()
Returns if the underlying handler supports streaming. If so, a streaming buffer may be passed when it start rendering.
Source
# File actionpack/lib/action_view/template.rb, line 130
def supports_streaming?
handler.respond_to?(:supports_streaming?) && handler.supports_streaming?
end
Defined in actionpack/lib/action_view/template.rb line 130
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Template