Class: Async::HTTP::Body::Fixed

Inherits:
Readable
  • Object
show all
Defined in:
lib/async/http/body/fixed.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Readable

#close, #each, #stop

Constructor Details

#initialize(stream, length) ⇒ Fixed

Returns a new instance of Fixed.



27
28
29
30
31
# File 'lib/async/http/body/fixed.rb', line 27

def initialize(stream, length)
	@stream = stream
	@length = length
	@remaining = length
end

Instance Attribute Details

#lengthObject (readonly)

Returns the value of attribute length.



33
34
35
# File 'lib/async/http/body/fixed.rb', line 33

def length
  @length
end

#remainingObject (readonly)

Returns the value of attribute remaining.



34
35
36
# File 'lib/async/http/body/fixed.rb', line 34

def remaining
  @remaining
end

Instance Method Details

#empty?Boolean

Returns:

  • (Boolean)


36
37
38
# File 'lib/async/http/body/fixed.rb', line 36

def empty?
	@remaining == 0
end

#inspectObject



58
59
60
# File 'lib/async/http/body/fixed.rb', line 58

def inspect
	"\#<#{self.class} length=#{@length} remaining=#{@remaining}>"
end

#joinObject



50
51
52
53
54
55
56
# File 'lib/async/http/body/fixed.rb', line 50

def join
	buffer = @stream.read(@remaining)
	
	@remaining = 0
	
	return buffer
end

#readObject



40
41
42
43
44
45
46
47
48
# File 'lib/async/http/body/fixed.rb', line 40

def read
	if @remaining > 0
		if chunk = @stream.read_partial(@remaining)
			@remaining -= chunk.bytesize
			
			return chunk
		end
	end
end