Class: Qonfig::Plugins::Registry Private

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/qonfig/plugins/registry.rb

Overview

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

Since:

  • 0.4.0

Instance Method Summary collapse

Constructor Details

#initializevoid

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.

Since:

  • 0.4.0



13
14
15
16
# File 'lib/qonfig/plugins/registry.rb', line 13

def initialize
  @plugin_set = {}
  @access_lock = Mutex.new
end

Instance Method Details

#[](plugin_name) ⇒ Qonfig::Plugins::Abstract

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.

Parameters:

  • plugin_name (Symbol, String)

Returns:

Since:

  • 0.4.0



23
24
25
# File 'lib/qonfig/plugins/registry.rb', line 23

def [](plugin_name)
  thread_safe { fetch(plugin_name) }
end

#each(&block) ⇒ Enumerable

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.

Parameters:

  • block (Block)

Returns:

  • (Enumerable)

Since:

  • 0.19.0



51
52
53
# File 'lib/qonfig/plugins/registry.rb', line 51

def each(&block)
  thread_safe { iterate(&block) }
end

#namesArray<String>

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.

Returns:

  • (Array<String>)

Since:

  • 0.4.0



42
43
44
# File 'lib/qonfig/plugins/registry.rb', line 42

def names
  thread_safe { plugin_names }
end

#register(plugin_name, plugin_module) ⇒ void Also known as: []=

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.

This method returns an undefined value.

Parameters:

Since:

  • 0.4.0



33
34
35
# File 'lib/qonfig/plugins/registry.rb', line 33

def register(plugin_name, plugin_module)
  thread_safe { apply(plugin_name, plugin_module) }
end