This class provides a thread pool for performing methods
of objects in parallel in other threads. This is
similar to the NSOperationQueue class but is a
lightweight alternative designed to operate
rather faster though with slightly decreased
functionality... for instance there is no
dependency checking supported.
Returns an instance intended for sharing between
sections of code which wish to make use of
threading by performing operations in other
threads, but which don't mind operations being
interleaved with those belonging to other
sections of code. Always returns the same
instance whenever the method is called.
Adds the object to the queue for which operations
should be performed. You may add an object
more than once, but that may result in the operation
being performed simultaneously in more than one
thread. If the pool is configured with zero
threads or the queue of operations is full, this
method will simply perform the operation
immediately. The operation will be
performed in a context where there is an
exception handler set to trap exceptions, and an
autorelease pool to deal with autoreleased
objects.
Specify the number of operations which may be
waiting. Default is 100. Setting a
value of zero ensures that operations are performed
immediately rather than being queued.
Specify the maximum number of threads in the pool
(the actual number used may be lower than this value).
Default is 2. The pool creates threads
on demand up to the specified limit (or a lower limit if
dictated by system resources) but will not destroy
idle threads unless the limit is subsequently
released. Setting a value of zero means
that operations are performed in the main thread. In
this case
-drain:
will be used (with a 30 second limit) followed by
-flush
to ensure that the queue is emptied before the threads
are shut down.