Method: Datadog::DI.remove_current_component

Defined in:
lib/datadog/di/base.rb

.remove_current_component(component) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

[View source]

108
109
110
111
112
# File 'lib/datadog/di/base.rb', line 108

def remove_current_component(component)
  LOCK.synchronize do
    @current_components&.delete(component)
  end
end