Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Timed event within a script

by stevieb (Canon)
on Mar 07, 2017 at 21:51 UTC ( [id://1183888]=note: print w/replies, xml ) Need Help??


in reply to Timed event within a script

If you don't need to share any variables or anything, my Async::Event::Interval can help you. It forks off a separate process and performs work outside of the main process based on a callback subroutine within the script (you can name this sub whatever you want). Here's a basic example. The 1 in the call to new() is how often the event fires, in seconds (floating point seconds work), so for 30 minutes, you'd put 1800. The callback sub is the work you want the event to do. I've tested it on Strawberry perl v5.24.1, and the same version on Linux.

use warnings; use strict; use Async::Event::Interval; my $event = Async::Event::Interval->new(1, \&callback); $event->start; my $c = 1; while (1){ print "$c: in the main process...\n"; $c++; sleep 10; } sub callback { print "we're alive!\n"; }

Output:

1: in the main process... we're alive! we're alive! we're alive! we're alive! we're alive! we're alive! we're alive! we're alive! we're alive! we're alive! 2: in the main process... we're alive! we're alive!

Replies are listed 'Best First'.
Re^2: Timed event within a script
by bajangerry (Sexton) on Mar 08, 2017 at 13:23 UTC

    Thanks for you response, I will give this a try and see if it gives me what I want<\p>

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (7)
As of 2024-04-25 16:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found