Sha256: 6cd4dadfccca58b714eb98ee1507f300b071dd4896eb6e30d18ebebbd84fd0a4
Contents?: true
Size: 664 Bytes
Versions: 7
Compression:
Stored size: 664 Bytes
Contents
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true cs__scoped_require 'contrast/components/interface' module Contrast module Agent # Threads used by Contrast. class Thread < ::Thread include Contrast::Components::Interface access_component :logging, :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
7 entries across 7 versions & 1 rubygems