Learning ColdFusion 8: CFThread Part I - Data Exchange

<!--- Launch a child thread. --->
<cfthread
	action="run"
	name="DoomedThread">
 
	<!--- Throw an error. --->
	<cfthrow
		type="DoomThread.Suicide"
		message="You Thread Has Offed Itself"
		detail="You Thread Has Offed Itself, But You Are OK"
		/>
 
</cfthread>
 
 
<!--- Join the child thread to the curren page. --->
<cfthread
	action="join"
	name="DoomedThread"
	/>
 
<!--- Output thread object. --->
<cfdump var="#DoomedThread#" />

For Cut-and-Paste