Whatever message this page gives is out now! Go check it out!
<cfset var index=1>
<cfset index=1><cfset Thread.myValue = 27>
<cfset myThread.myValue = 27><cfset nextValue=myThread.myValue + 1><cfset threadname="thread_#N#">
...
<!--- The following two lines are equivalent --->
<cfset threadscopeForNthThread = cfthread[threadname] >
<cfset threadscopeForNthThread = Evaluate(threadname) ><cfloop query="dir">
<cfset threadname = "thread_" & #i#>
<cfset i=i+1>
<cfthread name="#threadname#" filename="#dir.name#">
<cffile action="COPY" source="#src#\#filename#"
destination="#dest#\#filename#\">
</cfthread>
</cfloop>Variable | Description |
Elapsedtime | The amount of processor time that has been spent handling the thread. |
Error | A ColdFusion error structure that contains the keys that you can access in a cfcatch tag. This variable has a value only if an unhandled error occurred during thread processing. For information on handling thread errors, see Handling ColdFusion thread errors in Working with threads. |
Name | The thread name. |
Output | Output text that the thread generates. Threads cannot display output directly. For more information see Handling thread output in Working with threads. |
Priority | The thread processing priority, as specified when you created the thread. |
Starttime | The time at which the thread began processing. |
Status | The current status of the thread. For information on using the Status in an application, see Using the thread status in Working with threads. |