Whatever message this page gives is out now! Go check it out!
ThreadTerminate(threadName)| Parameter | Description |
threadName | The name of the thread to stop. |
<cfscript>
thread name="t1"
{
sleep(3000);
}
sleep(1000);
threadTerminate("t1");
sleep(1000);
</cfscript>
<cfoutput>Status of the thread = #t1.Status#<br></cfoutput>