Hi Steve,
 
FuseQ is deferred, meaning that the fuseactions get executed AFTER the current fuseaction is finished.  So that this...
 
<cfcase value=test>
    <cfset AddToQ("num.print2")>
    <cfinclude template="dsp_3.cfm">
    <cfset AddToQ("num.print4")>
</cfcase>
 
... prints "3 2 4".
 
 
 
But FuseBjorks (!) is immediate so that this...
 
<cfcase value=test>
    <cfset RunAction("num.print2")>
    <cfinclude template="dsp_3.cfm">
    <cfset RunAction("num.print4")>
</cfcase>
 
... "2 3 4"
 
 
In practice it means that you can drop in a RunAction call anywhere, right in the middle of any code you like, and the specified fuseaction/s execute/s then and there, then execution continues on from the next line.
 
How does that sound?  Making any sense out of my muddled mouth?
 
See ya,
LeeBB
 

----- Original Message -----


 
Hi all,

Could someone please explain the difference between 'delayed' and
'immediate' execution.

Thanks

==^================================================================
This email was sent to: [email protected]

EASY UNSUBSCRIBE click here: http://topica.com/u/?bUrFMa.bV0Kx9
Or send an email to: [EMAIL PROTECTED]

T O P I C A -- Register now to manage your mail!
http://www.topica.com/partner/tag02/register
==^================================================================

Reply via email to