|
DescriptionTerminates the thread
specified by threadName. Behaves same as cfthread action="terminate".
Function syntaxThreadTerminate(threadName)
HistoryColdFusion 9: Added this function.
Parameters
Parameter
|
Description
|
threadName
|
The name of the thread to stop.
|
UsageUse 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.
Example<cfscript>
thread name="t1"
{
sleep(3000);
}
sleep(1000);
threadTerminate("t1");
sleep(1000);
</cfscript>
<cfoutput>Status of the thread = #t1.Status#<br></cfoutput>
|
|
|