Sha256: 15a25ebc0a2f7f17fff1351117a51e01618377c4886d1c1205a7f7ea0c76828c
Contents?: true
Size: 450 Bytes
Versions: 27
Compression:
Stored size: 450 Bytes
Contents
# frozen_string_literal: true require 'active_support' class LHS::Record module RequestCycleCache class RequestCycleThreadRegistry # Using ActiveSupports PerThreadRegistry to be able to support Active Support v4. # Will switch to thread_mattr_accessor (which comes with Activesupport) when we dropping support for Active Support v5. extend ActiveSupport::PerThreadRegistry attr_accessor :request_id end end end
Version data entries
27 entries across 27 versions & 1 rubygems