Sha256: b051579fedeb4254d7fb13e27d846b0076e5b3de64e4ff0ded6b877418a9ac73

Contents?: true

Size: 596 Bytes

Versions: 28

Compression:

Stored size: 596 Bytes

Contents

require 'ddtrace/contrib/patcher'

module Datadog
  module Contrib
    module ConcurrentRuby
      # Patcher enables patching of 'Future' class.
      module Patcher
        include Contrib::Patcher

        module_function

        def target_version
          Integration.version
        end

        def patch
          require 'ddtrace/contrib/concurrent_ruby/future_patch'
          patch_future
        end

        # Propagate tracing context in Concurrent::Future
        def patch_future
          ::Concurrent::Future.send(:include, FuturePatch)
        end
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 2 rubygems

Version Path
ddtrace-0.49.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.48.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.47.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.46.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.45.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.44.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.43.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.42.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.41.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ls-trace-0.2.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.40.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.39.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.38.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.37.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.36.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.35.2 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.35.1 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.35.0 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.34.2 lib/ddtrace/contrib/concurrent_ruby/patcher.rb
ddtrace-0.34.1 lib/ddtrace/contrib/concurrent_ruby/patcher.rb