Terminates the thread specified by threadName. Behaves same as cfthread action="terminate".
Exception handling functions, Data output functions
ThreadTerminate(threadName)
cfscript, cfthrow, cftry, cfcatch
ColdFusion 9: Added this function.
Parameter |
Description |
|---|---|
threadName |
The name of the thread to stop. |
Use this function to stop processing of the thread specified in the threadName. If you terminate a thread, the thread scope includes an ERROR metadata structure that provides information about the termination.
<cfscript>
thread name="t1"
{
sleep(3000);
}
sleep(1000);
threadTerminate("t1");
sleep(1000);
</cfscript>
<cfoutput>Status of the thread = #t1.Status#<br></cfoutput>
Sign in to your account