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

#each, #finish

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

#close(error = nil) ⇒ Object



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

def close(error = nil)
	if @remaining != 0
		@stream.close
	end
	
	super
end

#empty?Boolean

Returns:

  • (Boolean)


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

def empty?
	@remaining == 0
end

#inspectObject



66
67
68
# File 'lib/async/http/body/fixed.rb', line 66

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

#joinObject



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

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

#readObject



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

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