Sha256: 4ecd9b4c41c6d95a39981c138fa77281f9ebd86db1e84653c1c561f267fc8d4f
Contents?: true
Size: 1.33 KB
Versions: 1
Compression:
Stored size: 1.33 KB
Contents
# typed: ignore require_relative 'address_hash' require_relative 'subscriber' module Datadog module AppSec module Reactive # Reactive Engine class Engine def initialize @data = {} @subscribers = AddressHash.new { |h, k| h[k] = [] } # TODO: move to AddressHash initializer @children = [] end def subscribe(*addresses, &block) @subscribers[addresses.freeze] << Subscriber.new(&block).freeze # TODO: move freeze to Subscriber end def publish(address, data) # check if someone has address subscribed if @subscribers.addresses.include?(address) # someone will be interested, set data @data[address] = data # find candidates i.e address groups that contain the just posted address @subscribers.with(address).each do |addresses| # find targets to the address group containing the posted address subscribers = @subscribers[addresses] # is all data for the targets available? if (addresses - @data.keys).empty? hash = addresses.each_with_object({}) { |a, h| h[a] = @data[a] } subscribers.each { |s| s.call(*hash.values) } end end end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ddtrace-1.9.0 | lib/datadog/appsec/reactive/engine.rb |