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