method

each_chunk

each_chunk(&block)
private

No documentation available.

# File actionpack/lib/action_controller/metal/live.rb, line 239
        def each_chunk(&block)
          while str = @buf.pop
            yield str
          end
        end