method
perform_across_services
v6.1.7.7 -
Show latest stable
- Class:
ActiveStorage::Service::MirrorService
perform_across_services(method, *args)private
No documentation available.
# File activestorage/lib/active_storage/service/mirror_service.rb, line 72
def perform_across_services(method, *args)
# FIXME: Convert to be threaded
each_service.collect do |service|
service.public_send method, *args
end
end