Erwin
Member since Mar 26, 2010
- Profile: /members/5721-erwin.htm
- Comments: 8
Recent Blog Comments By Erwin
-
Building A Simple ColdFusion Dependency Injection Framework
Posted on May 24, 2010 at 3:22 PM
Thank you Ben. This brought a whole lot of clarity to what was happening in this example. Now I have one thing I'm trying to understand. $inject. what does it mean to use the $ with the keyword inject. Is this an undocumented feature of ColdFusion?... read more »
-
Building A Simple ColdFusion Dependency Injection Framework
Posted on May 21, 2010 at 11:39 AM
What version of coldfusion is ico:singleton attribute available?... read more »
-
Learning ColdFusion 8: CFThread Part IV - Cross-Page Thread References
Posted on Mar 26, 2010 at 4:23 PM
@Ben Nadel, Sorry I forgot to paste this at the beginning: <cffunction name="ProcessAll" returntype="numeric" access="remote" output = "Yes" hint="This is used to ProcessUpdate Executive Specific Profile">... read more »
-
Learning ColdFusion 8: CFThread Part IV - Cross-Page Thread References
Posted on Mar 26, 2010 at 4:21 PM
@Ben Nadel, <cfargument name="wsXmlString" required="Yes" type="string"> <cfargument name="wsfunctionName" required="Yes" type="string"> <cfset variables.wsMemid = 0> <cfset variables.strlogoutcall... read more »
-
Learning ColdFusion 8: CFThread Part IV - Cross-Page Thread References
Posted on Mar 26, 2010 at 3:11 PM
@Ben Nadel, I have one thread which we call Susie and another thread which we will call Lisa. I have an application variable like your example which will be order basket. Susie processes a lot of phone orders (request) and places the finish orders and places the order forms in the order basket bu... read more »
-
Learning ColdFusion 8: CFThread Part IV - Cross-Page Thread References
Posted on Mar 26, 2010 at 2:43 PM
@Ben Nadel, So while within a thread that is being spawned can I check for THREAD.status eq "COMPLETED" or "TERMINATED" in other other words when does the status gets changed from "RUNNING" ? Is it before the thread is killed or after? Cause I can not call <cfset APPLICATION.Threads[ THREAD.... read more »
-
Learning ColdFusion 8: CFThread Part IV - Cross-Page Thread References
Posted on Mar 26, 2010 at 2:02 PM
@Ben Nadel, so How do I ensure that I catch status the thread on a status that is either COMPLETED or TERMINATED?... read more »
-
Learning ColdFusion 8: CFThread Part IV - Cross-Page Thread References
Posted on Mar 26, 2010 at 10:52 AM
@Ben: <cfset APPLICATION.Threads[ THREAD.Name ] = Duplicate( THREAD ) /> since you stated that this COPIES the threads meta data does it mean that you will only get the threads last current status since it is a copy or a snapshot or is it a reference which points to the threads instantaneous... read more »