> > Where to next? How do I interrogate these threads to see what they are
> > actually doing?

Mark,

May I ask what you are trying to do with the threads?  Is your goal to be
able to interrupt a process, sort of like an async-cfabort?

<!--- Page 1 --->
<loop>
        <go do something asynchronously and perhaps label the thread for
later reference>
                <take a really long time to process>
        </...>
</loop>

<!--- Page 2 --->

<loop over thread array>
        <async processes thought to be still executing>
                <button: CancelProcess(thisThread)>
        </...>
</loop>


Function CancelProcess(thread) {
        inspect thread, 
        identify status of variables,
        do cleanup work where necessary,
        then thread.interrupt()
}

I'm not a Java Developer but this article seemed like it might relate.
http://builder.com.com/5100-6370-5144546.html

Good luck, and please share your findings as you proceed.  I too am trying
to work with threads in CF.

Regards,

- Seth



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:10/messageid:6053
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:10
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.10

Reply via email to