Class: Protocol::HPACK::Huffman::Generator::Node::Transition
- Inherits:
-
Object
- Object
- Protocol::HPACK::Huffman::Generator::Node::Transition
- Defined in:
- lib/protocol/hpack/huffman/generator.rb
Instance Attribute Summary collapse
-
#emit ⇒ Object
Returns the value of attribute emit.
-
#node ⇒ Object
Returns the value of attribute node.
Instance Method Summary collapse
-
#initialize(emit, node) ⇒ Transition
constructor
A new instance of Transition.
Constructor Details
#initialize(emit, node) ⇒ Transition
Returns a new instance of Transition.
48 49 50 51 |
# File 'lib/protocol/hpack/huffman/generator.rb', line 48 def initialize(emit, node) @emit = emit @node = node end |
Instance Attribute Details
#emit ⇒ Object
Returns the value of attribute emit.
47 48 49 |
# File 'lib/protocol/hpack/huffman/generator.rb', line 47 def emit @emit end |
#node ⇒ Object
Returns the value of attribute node.
47 48 49 |
# File 'lib/protocol/hpack/huffman/generator.rb', line 47 def node @node end |