Flowdock
method

read_all

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: Net::BufferedIO
read_all(dest = ''.dup) public

No documentation

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

Hide source
# File lib/net/protocol.rb, line 137
    def read_all(dest = ''.dup)
      LOG 'reading all...'
      read_bytes = 0
      begin
        while true
          s = rbuf_consume(@rbuf.size)
          read_bytes += s.size
          dest << s
          rbuf_fill
        end
      rescue EOFError
        ;
      end
      LOG "read #{read_bytes} bytes"
      dest
    end
Register or log in to add new notes.