Class: Arborist::Event::NodeAcked
- Inherits:
-
Node
- Object
- Arborist::Event
- Node
- Arborist::Event::NodeAcked
- Defined in:
- lib/arborist/event/node_acked.rb
Overview
An event generated when a node is manually ACKed.
Instance Attribute Summary
Attributes inherited from Node
Attributes inherited from Arborist::Event
Instance Method Summary collapse
-
#initialize(node) ⇒ NodeAcked
constructor
Create a new NodeAcked event for the specified
node
.
Methods inherited from Node
#inspect_details, #match, #payload, #to_h
Methods inherited from Arborist::Event
#informational?, #inspect, #inspect_details, #match, #to_h, #type
Constructor Details
#initialize(node) ⇒ NodeAcked
Create a new NodeAcked event for the specified node
.
12 13 14 |
# File 'lib/arborist/event/node_acked.rb', line 12 def initialize( node ) super( node, node.ack.to_h ) end |