Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Scott Steinbeck
Scott SteinbeckPriority
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Affects versions
Created 10 March 2023 at 17:06
Updated 19 March 2023 at 05:30
Instead of each iteration flushing to the screen, lucee waits until the entire async loop has finished to flush to the screen.
echo( 'start<br>' ) flush; [1,2,3,4,5].each( (i)=>{ sleep( randRange( 1, 5000 ) ) echo( 'Iteration #i#<br>' ) flush; }, true );