method
write
v6.1.7.7 -
Show latest stable
- Class:
ActionDispatch::Response::Buffer
write(string)public
No documentation available.
# File actionpack/lib/action_dispatch/http/response.rb, line 126
def write(string)
raise IOError, "closed stream" if closed?
@str_body = nil
@response.commit!
@buf.push string
end