Causes a job to be queued when a timer expires.
#include <prtpool.h> NSPR_API(PRJob *) PR_QueueJob_Timer( PRThreadPool *tpool, PRIntervalTime timeout, PRJobFn fn, void * arg, PRBool joinable );
The function has the following parameters:
tpoolPRThreadPool structure previously created by a call to PR_CreateThreadPool.iodPRJobIoDesc structure.timeoutPRIntervalTime, to wait before queuing the job.fnargfn.joinablePR_TRUE, the job is joinable. If PR_FALSE, the job is not joinable. See PR_JoinJob.Pointer to a PRJob structure or NULL on error.