instance method
supports_streaming?
Ruby on Rails 8.0.4
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 261
def supports_streaming?
handler.respond_to?(:supports_streaming?) && handler.supports_streaming?
end
Defined in actionview/lib/action_view/template.rb line 261
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Template