Method: Chef::Resource#resolve_notification_references

Defined in:
lib/chef/resource.rb

#resolve_notification_referencesObject

Iterates over all immediate and delayed notifications, calling resolve_resource_reference on each in turn, causing them to resolve lazy/forward references.



274
275
276
277
# File 'lib/chef/resource.rb', line 274

def resolve_notification_references
  @immediate_notifications.each { |n| n.resolve_resource_reference(run_context.resource_collection) }
  @delayed_notifications.each {|n| n.resolve_resource_reference(run_context.resource_collection) }
end