Class: Protocol::HTTP2::Window
- Inherits:
-
Object
- Object
- Protocol::HTTP2::Window
- Defined in:
- lib/protocol/http2/window_update_frame.rb
Instance Attribute Summary collapse
-
#available ⇒ Object
readonly
Returns the value of attribute available.
-
#capacity ⇒ Object
Returns the value of attribute capacity.
-
#used ⇒ Object
readonly
Returns the value of attribute used.
Instance Method Summary collapse
- #available? ⇒ Boolean
- #consume(amount) ⇒ Object
- #dup ⇒ Object
- #expand(amount) ⇒ Object
-
#full? ⇒ Boolean
The window is completely full?.
-
#initialize(capacity = 0xFFFF) ⇒ Window
constructor
A new instance of Window.
- #limited? ⇒ Boolean
- #to_s ⇒ Object
Constructor Details
#initialize(capacity = 0xFFFF) ⇒ Window
Returns a new instance of Window.
27 28 29 30 31 32 33 34 |
# File 'lib/protocol/http2/window_update_frame.rb', line 27 def initialize(capacity = 0xFFFF) # This is the main field required: @available = capacity # These two fields are primarily used for efficiently sending window updates: @used = 0 @capacity = capacity end |
Instance Attribute Details
#available ⇒ Object (readonly)
Returns the value of attribute available.
59 60 61 |
# File 'lib/protocol/http2/window_update_frame.rb', line 59 def available @available end |
#capacity ⇒ Object
Returns the value of attribute capacity.
46 47 48 |
# File 'lib/protocol/http2/window_update_frame.rb', line 46 def capacity @capacity end |
#used ⇒ Object (readonly)
Returns the value of attribute used.
45 46 47 |
# File 'lib/protocol/http2/window_update_frame.rb', line 45 def used @used end |
Instance Method Details
#available? ⇒ Boolean
61 62 63 |
# File 'lib/protocol/http2/window_update_frame.rb', line 61 def available? @available > 0 end |
#consume(amount) ⇒ Object
54 55 56 57 |
# File 'lib/protocol/http2/window_update_frame.rb', line 54 def consume(amount) @available -= amount @used += amount end |
#dup ⇒ Object
36 37 38 |
# File 'lib/protocol/http2/window_update_frame.rb', line 36 def dup return self.class.new(@capacity) end |
#expand(amount) ⇒ Object
65 66 67 68 69 70 71 72 |
# File 'lib/protocol/http2/window_update_frame.rb', line 65 def (amount) @available += amount @used -= amount if @available > MAXIMUM_ALLOWED_WINDOW_SIZE raise FlowControlError, "Expanding window by #{amount} caused overflow: #{@available} > #{MAXIMUM_ALLOWED_WINDOW_SIZE}!" end end |
#full? ⇒ Boolean
The window is completely full?
41 42 43 |
# File 'lib/protocol/http2/window_update_frame.rb', line 41 def full? @available <= 0 end |
#limited? ⇒ Boolean
74 75 76 |
# File 'lib/protocol/http2/window_update_frame.rb', line 74 def limited? @available < (@capacity / 2) end |
#to_s ⇒ Object
78 79 80 |
# File 'lib/protocol/http2/window_update_frame.rb', line 78 def to_s "\#<Window used=#{@used} available=#{@available} capacity=#{@capacity}>" end |