Class: Arborist::Event::NodeAcked

Inherits:
Node show all
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

#node

Attributes inherited from Arborist::Event

#payload

Instance Method Summary collapse

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