Sha256: e0a0ea7c8dee7e226f814c070a033f82a24b002d895aea3a45182b7cb6eac6db
Contents?: true
Size: 1.33 KB
Versions: 7
Compression:
Stored size: 1.33 KB
Contents
require "thread" module Bugsnag module Delivery class ThreadQueue < Synchronous MAX_OUTSTANDING_REQUESTS = 100 STOP = Object.new MUTEX = Mutex.new class << self def deliver(url, body, configuration) @configuration = configuration start_once! if @queue.length > MAX_OUTSTANDING_REQUESTS @configuration.warn("Dropping notification, #{@queue.length} outstanding requests") return end # Add delivery to the worker thread @queue.push proc { super(url, body, configuration) } end private def start_once! MUTEX.synchronize do @started = nil unless defined?(@started) return if @started == Process.pid @started = Process.pid @queue = Queue.new worker_thread = Thread.new do while x = @queue.pop break if x == STOP x.call end end at_exit do @configuration.warn("Waiting for #{@queue.length} outstanding request(s)") unless @queue.empty? @queue.push STOP worker_thread.join end end end end end end end Bugsnag::Delivery.register(:thread_queue, Bugsnag::Delivery::ThreadQueue)
Version data entries
7 entries across 7 versions & 1 rubygems