method
perform_across_services
v5.2.3 -
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 48
def perform_across_services(method, *args)
# FIXME: Convert to be threaded
each_service.collect do |service|
service.public_send method, *args
end
end