Flowdock
method

write

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: Buffer
write(string) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_controller/metal/live.rb, line 146
      def write(string)
        unless @response.committed?
          @response.set_header "Cache-Control", "no-cache"
          @response.delete_header "Content-Length"
        end

        super

        unless connected?
          @buf.clear

          unless @ignore_disconnect
            # Raise ClientDisconnected, which is a RuntimeError (not an
            # IOError), because that's more appropriate for something beyond
            # the developer's control.
            raise ClientDisconnected, "client disconnected"
          end
        end
      end
Register or log in to add new notes.