class Protocol::HTTP::Body::Writable
def initialize(length = nil, queue: Thread::Queue.new)
@parameter length [Integer] The length of the response body if known.
Initialize the writable body.
def initialize(length = nil, queue: Thread::Queue.new) @length = length @queue = queue @count = 0 @error = nil end