Sha256: 369ea2cd503b8a316108e510f281a522b8def98c363fdd91b0839e3811e798ac

Contents?: true

Size: 643 Bytes

Versions: 9

Compression:

Stored size: 643 Bytes

Contents

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

require 'contrast/components/interface'

module Contrast
  module Agent
    # Threads used by Contrast.
    class Thread < ::Thread
      include Contrast::Components::Interface

      access_component :scope

      # 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

9 entries across 9 versions & 1 rubygems

Version Path
contrast-agent-4.3.2 lib/contrast/agent/thread.rb
contrast-agent-4.3.1 lib/contrast/agent/thread.rb
contrast-agent-4.3.0 lib/contrast/agent/thread.rb
contrast-agent-4.2.0 lib/contrast/agent/thread.rb
contrast-agent-4.1.0 lib/contrast/agent/thread.rb
contrast-agent-4.0.0 lib/contrast/agent/thread.rb
contrast-agent-3.16.0 lib/contrast/agent/thread.rb
contrast-agent-3.15.0 lib/contrast/agent/thread.rb
contrast-agent-3.14.0 lib/contrast/agent/thread.rb