Class: Baykit::BayServer::Docker::Http::H2::HeaderBlock
- Inherits:
-
Object
- Object
- Baykit::BayServer::Docker::Http::H2::HeaderBlock
- Defined in:
- lib/baykit/bayserver/docker/http/h2/header_block.rb
Constant Summary collapse
- INDEX =
1- OVERLOAD_KNOWN_HEADER =
2- NEW_HEADER =
3- KNOWN_HEADER =
4- UNKNOWN_HEADER =
5- UPDATE_DYNAMIC_TABLE_SIZE =
6
Instance Attribute Summary collapse
-
#index ⇒ Object
Returns the value of attribute index.
-
#name ⇒ Object
Returns the value of attribute name.
-
#op ⇒ Object
Returns the value of attribute op.
-
#size ⇒ Object
Returns the value of attribute size.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
Instance Attribute Details
#index ⇒ Object
Returns the value of attribute index.
16 17 18 |
# File 'lib/baykit/bayserver/docker/http/h2/header_block.rb', line 16 def index @index end |
#name ⇒ Object
Returns the value of attribute name.
17 18 19 |
# File 'lib/baykit/bayserver/docker/http/h2/header_block.rb', line 17 def name @name end |
#op ⇒ Object
Returns the value of attribute op.
15 16 17 |
# File 'lib/baykit/bayserver/docker/http/h2/header_block.rb', line 15 def op @op end |
#size ⇒ Object
Returns the value of attribute size.
19 20 21 |
# File 'lib/baykit/bayserver/docker/http/h2/header_block.rb', line 19 def size @size end |
#value ⇒ Object
Returns the value of attribute value.
18 19 20 |
# File 'lib/baykit/bayserver/docker/http/h2/header_block.rb', line 18 def value @value end |
Instance Method Details
#to_s ⇒ Object
22 23 24 |
# File 'lib/baykit/bayserver/docker/http/h2/header_block.rb', line 22 def to_s "#{op} index=#{index} name=#{name} value=#{value}" end |