Sha256: ce66b45e6c8a0caf95def48afc732e3716639358ec7bcd64d4fe5b46849bcebd
Contents?: true
Size: 1.07 KB
Versions: 6
Compression:
Stored size: 1.07 KB
Contents
# frozen_string_literal: true require "dry/system/constants" require "dry/system/plugins/monitoring/proxy" module Dry module System module Plugins # @api public module Monitoring # @api private def self.extended(system) super system.use(:notifications) system.after(:configure) do self[:notifications].register_event(:monitoring) end end # @api private def self.dependencies {"dry-events": "dry/events/publisher"} end # @api private def monitor(key, **options, &block) notifications = self[:notifications] resolve(key).tap do |target| proxy = Proxy.for(target, **options, key: key) if block proxy.monitored_methods.each do |meth| notifications.subscribe(:monitoring, target: key, method: meth, &block) end end decorate(key, with: -> target { proxy.new(target, notifications) }) end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems