Pool.Make_without_alarm
Sourcemodule System : System_sig.CORE
include Caqti_pool_sig.S with type 'a fiber := 'a System.Fiber.t
val use :
?priority:float ->
('a -> ('b, 'e) result System.Fiber.t) ->
('a, 'e) t ->
('b, 'e) result System.Fiber.t
use f pool
calls f
on a resource drawn from pool
, handing back the resource to the pool when f
exits.
drain pool
closes all resources in pool
. The pool is still usable, as new resources will be created on demand.
val create :
?config:Caqti_pool_config.t ->
?check:('a -> (bool -> unit) -> unit) ->
?validate:('a -> bool System.Fiber.t) ->
?log_src:Logs.Src.t ->
sw:System.Switch.t ->
stdenv:System.stdenv ->
(unit -> ('a, 'e) result System.Fiber.t) ->
('a -> unit System.Fiber.t) ->
('a, 'e) t
Internal: create alloc free
is a pool of resources allocated by alloc
and freed by free
. This is primarily intended for implementing the connect_pool
functions.