Karl,

I think I got this UDF/Custom Tag from Spike's blog a few weeks ago:

<CFPARAM name="attributes.milliseconds" default="1">

<CFSCRIPT>
function sleep(timeMillis) {
var thread = createObject("java", "java.lang.Thread");
thread.sleep(timeMillis);
}
sleep(#attributes.milliseconds#);
</CFSCRIPT>

it causes the process to "sleep" for the specified no of milliseconds.

HTH Douglas

-----Original Message-----
From: Osullivan Karl (RKB) Senior Analyst/Programmer
[mailto:[EMAIL PROTECTED]]
Sent: 16 October 2002 16:45
To: 'CF - Development Group'
Subject: [ cf-dev ] Forcing a job to wait / file attributes


Hello,

I'm using CFFILE to grab a spooled text file so I can grab out certain
fields and then populate a table.

How do I ensure that the file I'm grabbing is complete, and not still being
written to?  Also, if it is being written to, how can I force the page to
wait for, say 5 seconds, and then try again?

Thanks,

Karl.

Karl O'Sullivan
Senior Analyst Programmer
University Hospitals Coventry and Warwickshire NHS Trust
Tel: 024 7660 2020 x7578
[EMAIL PROTECTED]

-- 
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]



--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]

Reply via email to