модуль ActiveSupport::DescendantsTracker
Этот модуль предоставляет внутреннюю реализацию отслеживания потомков, которая быстрее, чем итерация через ObjectSpace.
Публичные методы класса
# File activesupport/lib/active_support/descendants_tracker.rb, line 20
def clear
if defined? ActiveSupport::Dependencies
@@direct_descendants.each do |klass, descendants|
if ActiveSupport::Dependencies.autoloaded?(klass)
@@direct_descendants.delete(klass)
else
descendants.reject! { |v| ActiveSupport::Dependencies.autoloaded?(v) }
end
end
else
@@direct_descendants.clear
end
end # File activesupport/lib/active_support/descendants_tracker.rb, line 14 def descendants(klass) arr = [] accumulate_descendants(klass, arr) arr end
# File activesupport/lib/active_support/descendants_tracker.rb, line 10 def direct_descendants(klass) @@direct_descendants[klass] || [] end
# File activesupport/lib/active_support/descendants_tracker.rb, line 36 def store_inherited(klass, descendant) (@@direct_descendants[klass] ||= []) << descendant end
Это единственный метод, который не является потокобезопасным, но вызывается только во время фазы ожидания загрузки.
Публичные методы экземпляра
# File activesupport/lib/active_support/descendants_tracker.rb, line 58 def descendants DescendantsTracker.descendants(self) end
# File activesupport/lib/active_support/descendants_tracker.rb, line 54 def direct_descendants DescendantsTracker.direct_descendants(self) end
# File activesupport/lib/active_support/descendants_tracker.rb, line 49 def inherited(base) DescendantsTracker.store_inherited(self, base) super end
Вызывает метод суперкласса
© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.