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