bulkmail_current_threadcount

one of the documented procedures in this installation of the ACS
Usage:
bulkmail_current_threadcount
What it does:
Return the number of mailer threads current active. This is the difference between bulkmail_threads_spawned and bulkmail_threads_completed.
Defined in: /web/philip/tcl/bulkmail-utils.tcl

Source code:


    ns_share bulkmail_threads_completed
    ns_share bulkmail_threads_spawned

    return [expr $bulkmail_threads_spawned - $bulkmail_threads_completed]


philg@mit.edu