Method: Chef::ActionCollection#initialize

Defined in:
lib/chef/action_collection.rb

#initialize(events, run_context = nil, action_records = []) ⇒ ActionCollection

Returns a new instance of ActionCollection.


92
93
94
95
96
97
# File 'lib/chef/action_collection.rb', line 92

def initialize(events, run_context = nil, action_records = [])
  @action_records  = action_records
  @pending_updates = []
  @events          = events
  @run_context     = run_context
end