Sha256: 5ff91e6438d6841ff3799baecc5a2477b3e58500f003c7f2cb054ba9b5db2bc7
Contents?: true
Size: 703 Bytes
Versions: 9
Compression:
Stored size: 703 Bytes
Contents
# Copyright (c) 2021 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
9 entries across 9 versions & 1 rubygems