| Allegro CL version 10.1 This page is new in 10.1. |
Arguments: process-pool
The default method for this process-pool
accessor returns the value of the
reused-count
slot of the argument process-pool
instance.
The reused-count
is the number of times an idle
process was re-used. When process-pool-run is called, after perhaps
waiting in the work-item queue either (1) an existing idle process is
used to run the associated work-item or (2) a new process is created
to do so. Whenever (1) occurs (an idle process is used), the value
returned by (the default method of) this generic function is increased
by 1. Note this occurs even if the process was created as a primed
process when the process-pool was created and thus has not yet run a
work item. See also process-pool-new-count.
See Process pools in multiprocessing.htm for more information on process pools.
Copyright (c) 1998-2022, Franz Inc. Lafayette, CA., USA. All rights reserved.
This page is new in the 10.1 release.
Created 2019.8.20.
| Allegro CL version 10.1 This page is new in 10.1. |