Class Net::HTTPGenericRequest
In: lib/net_fix.rb
Parent: Object

Methods

Constants

DEFAULT_LOCAL_READ_SIZE = 16*1024   Default size (in bytes) of the max read from a local source (File, String, etc.) to the user space write buffers for socket IO.

Public Class methods

[Source]

    # File lib/net_fix.rb, line 70
70:     def self.local_read_size=(readsize)
71:       if(readsize <= 0)
72:         return
73:       end
74:       @@local_read_size = readsize
75:     end

[Source]

    # File lib/net_fix.rb, line 77
77:     def self.local_read_size?()
78:       @@local_read_size
79:     end

[Validate]