Class: ThreadPool
- Inherits:
-
Object
- Object
- ThreadPool
- Defined in:
- lib/thread_pool.rb
Defined Under Namespace
Classes: Worker
Instance Attribute Summary collapse
-
#max_size ⇒ Object
Returns the value of attribute max_size.
Instance Method Summary collapse
- #busy? ⇒ Boolean
-
#initialize(max_size = 10) ⇒ ThreadPool
constructor
A new instance of ThreadPool.
- #process(block = nil, &blk) ⇒ Object
- #shutdown ⇒ Object (also: #join)
- #size ⇒ Object
Constructor Details
#initialize(max_size = 10) ⇒ ThreadPool
Returns a new instance of ThreadPool.
64 65 66 67 68 |
# File 'lib/thread_pool.rb', line 64 def initialize(max_size = 10) @max_size = max_size @queue = Queue.new @workers = [] end |
Instance Attribute Details
#max_size ⇒ Object
Returns the value of attribute max_size.
62 63 64 |
# File 'lib/thread_pool.rb', line 62 def max_size @max_size end |
Instance Method Details
#busy? ⇒ Boolean
74 75 76 |
# File 'lib/thread_pool.rb', line 74 def busy? @queue.size < @workers.size end |
#process(block = nil, &blk) ⇒ Object
85 86 87 88 89 |
# File 'lib/thread_pool.rb', line 85 def process(block=nil,&blk) block = blk if block_given? worker = get_worker worker.set_block(block) end |
#shutdown ⇒ Object Also known as: join
78 79 80 81 |
# File 'lib/thread_pool.rb', line 78 def shutdown @workers.each { |w| w.stop } @workers = [] end |
#size ⇒ Object
70 71 72 |
# File 'lib/thread_pool.rb', line 70 def size @workers.size end |