Sha256: 9aaa868a81fd0e51b79cf93e5d8316438ee152abe5063b0fc38def5573c31e9e

Contents?: true

Size: 703 Bytes

Versions: 24

Compression:

Stored size: 703 Bytes

Contents

# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
# frozen_string_literal: true

require 'contrast/components/scope'

module Contrast
  module Agent
    # Threads used by Contrast. Any long running thread should be created and managed by our ThreadWatcher class.
    class Thread < ::Thread
      include Contrast::Components::Scope::InstanceMethods

      # Make our internal code run in Contrast scope.
      def initialize *args
        wrapped_block = proc do |block_args|
          with_contrast_scope do
            yield(*block_args)
          end
        end

        super(*args, &wrapped_block)
      end
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
contrast-agent-6.11.0 lib/contrast/agent/thread.rb
contrast-agent-6.10.0 lib/contrast/agent/thread.rb
contrast-agent-6.9.0 lib/contrast/agent/thread.rb
contrast-agent-6.8.0 lib/contrast/agent/thread.rb
contrast-agent-6.7.0 lib/contrast/agent/thread.rb
contrast-agent-6.6.5 lib/contrast/agent/thread.rb
contrast-agent-6.6.4 lib/contrast/agent/thread.rb
contrast-agent-6.6.3 lib/contrast/agent/thread.rb
contrast-agent-6.6.2 lib/contrast/agent/thread.rb
contrast-agent-6.6.1 lib/contrast/agent/thread.rb
contrast-agent-6.6.0 lib/contrast/agent/thread.rb
contrast-agent-6.5.1 lib/contrast/agent/thread.rb
contrast-agent-6.5.0 lib/contrast/agent/thread.rb
contrast-agent-6.4.0 lib/contrast/agent/thread.rb
contrast-agent-6.3.0 lib/contrast/agent/thread.rb
contrast-agent-6.2.0 lib/contrast/agent/thread.rb
contrast-agent-6.1.2 lib/contrast/agent/thread.rb
contrast-agent-6.1.1 lib/contrast/agent/thread.rb
contrast-agent-6.1.0 lib/contrast/agent/thread.rb
contrast-agent-6.0.0 lib/contrast/agent/thread.rb