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