Flowdock
method

write

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: Chunker
write(buf) public

No documentation

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

Hide source
# File lib/net/http/generic_request.rb, line 171
    def write(buf)
      # avoid memcpy() of buf, buf can huge and eat memory bandwidth
      rv = buf.bytesize
      @sock.write("#{rv.to_s(16)}\r\n", buf, "\r\n")
      rv
    end
Register or log in to add new notes.