class

NNTP::Pool(T)

Inherits Reference < Object

Constructors

new(initial_pool_size : Int32 = 1, max_pool_size : Int32 = 0, max_idle_pool_size : Int32 = 1, checkout_timeout : Float64 = 5.0, retry_attempts : Int32 = 1, retry_delay : Float64 = 0.2, &factory : -> T)
Source

Instance methods

checkout
Source
checkout
Source
checkout_some(candidates : Enumerable(WeakRef(T))) : Tuple(T, Bool)
selected, is_candidate = pool.checkout_some(candidates)

selected be a resource from the candidates list and is_candidate == true or selected will be a new resource and is_candidate == false

Source
close

close all resources in the pool

Source
release(resource : T) : Nil
Source
stats

Returns stats of the pool

Source

Nested types