On 8/28/06, Omar Adobati <[EMAIL PROTECTED]> wrote:
...If I need to execute more than one task at the same time, suppose to generate a html file to display to the screen and an e-mail to send to someone... could I do this in the "same" time?...
You could either a) Aggregate the mail-generating pipeline with the ones that generate your html page, which would cause both to execute at the same time (conceptually at least,not sure about multi-threading in this case). or b) Have a flowscript as part of your html page generation, and call java code there to send the email. -Bertrand --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
