Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Detect Stop Button

by Dogma (Pilgrim)
on Nov 27, 2001 at 10:30 UTC ( [id://127741]=note: print w/replies, xml ) Need Help??


in reply to Detect Stop Button

From reading the rest of the posts it seems like an Apache::StopDetect or like module should be a fairly simple task to code. Does anyone know of a pre-existing module to do this or a non-apache specific mechanism (ie content-length being inconsistent)?

Replies are listed 'Best First'.
Re: Re: Detect Stop Button
by hakkr (Chaplain) on Nov 27, 2001 at 15:19 UTC
    sub StopCheck{ $| = 1; print "\n" or die "STDOUT gone away"; }
    Problem solved I call this subroutine with each iteration of my programs main control loop. The die is redundant in Apache/UNIX as it dies when you print anyway. Works when the user presses stop or navigates away from the page. As it's per filehandle I don't think you have to turn buffering back on.

    Also has the added benefit of keeping the connection alive

    Thanks for all your help.
    Update: Zuqif suggested I adapt this sub to create a progress bar in the browser. Some magic todo with browser refreshing I think is required

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://127741]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2024-04-18 19:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found