Class: Net::HTTP::Persistent::TimedStackMulti
- Inherits:
-
ConnectionPool::TimedStack
- Object
- ConnectionPool::TimedStack
- Net::HTTP::Persistent::TimedStackMulti
- Defined in:
- lib/net/http/persistent/timed_stack_multi.rb
Overview
:nodoc:
Instance Method Summary collapse
- #empty? ⇒ Boolean
-
#initialize(size = 0, &block) ⇒ TimedStackMulti
constructor
A new instance of TimedStackMulti.
- #length ⇒ Object
Constructor Details
#initialize(size = 0, &block) ⇒ TimedStackMulti
Returns a new instance of TimedStackMulti.
3 4 5 6 7 8 9 10 |
# File 'lib/net/http/persistent/timed_stack_multi.rb', line 3 def initialize(size = 0, &block) super @enqueued = 0 @ques = Hash.new { |h, k| h[k] = [] } @lru = {} @key = :"connection_args-#{object_id}" end |
Instance Method Details
#empty? ⇒ Boolean
12 13 14 |
# File 'lib/net/http/persistent/timed_stack_multi.rb', line 12 def empty? (@created - @enqueued) >= @max end |
#length ⇒ Object
16 17 18 |
# File 'lib/net/http/persistent/timed_stack_multi.rb', line 16 def length @max - @created + @enqueued end |