package caqti-async
-
caqti-async
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val size : ('a, 'e) t -> int
size pool
is the current number of open resources in pool
.
val use :
?priority:float ->
('a -> ('b, 'e) Stdlib.result Async_kernel.Deferred.t) ->
('a, 'e) t ->
('b, 'e) Stdlib.result Async_kernel.Deferred.t
use f pool
calls f
on a resource drawn from pool
, handing back the resource to the pool when f
exits.
val drain : ('a, 'e) t -> unit Async_kernel.Deferred.t
drain pool
closes all resources in pool
. The pool is still usable, as new resources will be created on demand.