2017 © Pedro Peláez
 

library timer

Web2All timer / sleep classes

image

web2all/timer

Web2All timer / sleep classes

  • Friday, December 15, 2017
  • by merijnvdk
  • Repository
  • 2 Watchers
  • 1 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Web2All timer

This package can be used to run code at a specific interval. This is mostly useful for daemon-like scripts., (*1)

What does it do

The main goal of the package (class) is to sleep for a specific amount of time. The sleep time is calculated so work can be done at fixed intervals. This is useful for long running scripts, as an alternative to running them each interval from teh cron., (*2)

Usage

The below code will 'do stuff' every minute. If the 'do stuff' takes long, the sleep will sleep as long as needed till the next interval moment which has not yet been reached. When it is one second before midnight, the script will exit the work loop., (*3)

So if this script is started at 00:00:05 then the next interval will be 00:01:05. If the 'do stuff' takes 70 seconds then the second time 'do work' will be done is at 00:02:05, the sleep will sleep for 50 seconds., (*4)

$interval_timer = new Web2All_Timer_SleepInterval(
    60, 
    Web2All_Timer_SleepInterval::OPTION_NO_INTERVAL_DRIFT
);
$interval_timer->initialize();
$interval_timer->setEndAtMidnight();
$keep_running = true;
while($keep_running){
  // do stuff

  // wait till the next interval
  $keep_running = $interval_timer->sleep();
}

But there are options to control the exact behaviour. See code ducumentation for the constructor, setEndAtMidnight and initialize method., (*5)

License

Web2All framework is open-sourced software licensed under the MIT license (https://opensource.org/licenses/MIT)., (*6)

The Versions

15/12 2017

dev-master

9999999-dev

Web2All timer / sleep classes

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

timer interval sleep web2all

15/12 2017

1.0.4

1.0.4.0

Web2All timer / sleep classes

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

timer interval sleep web2all