Git Product home page Git Product logo

Comments (3)

sucotronic avatar sucotronic commented on May 24, 2024

Well, maybe this is "documentation issue" instead of a coding issue, because I've found a nicer way to wait for processes to end:

$report = $cron->run();
foreach($jobs as $job)
    while($job->isRunning())
        sleep(1);

or

$report = $cron->run();
foreach($jobs as $job)
    while($job->isRunning())
        $job->getProcess()->wait();

from cron.

NoUseFreak avatar NoUseFreak commented on May 24, 2024

Hi,

Sorry for the late response.
Good to hear you found the solution.

Feel free to create a PR.

I think you can also do the following:

while ($cron->isRunning()) {
    sleep(1);
}

from cron.

guyradford avatar guyradford commented on May 24, 2024

Hi

The code snippet from @NoUseFreak didn't work for me. Based on @sucotronic code snippet I got this to work:

        // this waits until all the jobs have finished
        $report = $cron->run();
        foreach( $report->getReports() as $report)
//            $job = $report->getJob();
            while($report->getJob()->isRunning())
                $report->getJob()->getProcess()->wait();

from cron.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.