return-connection ( conn pool -- )
Connection pools
Prev:acquire-connection ( pool -- conn )
Next:with-pooled-connection ( pool quot -- )


Vocabulary
io.pools

Inputs and outputs
conna connection
poola pool


Word description
Returns a connection to the pool.

Definition
USING: accessors kernel sequences ;

IN: io.pools

: return-connection ( conn pool -- )
dup check-pool connections>> push ;