Recommend this page to a friend! |
Classes of Alexandre Sinício | PHP Async Executor | README.md | Download |
|
DownloadAsync ProcessorThis a simple class that can help spawning CLI processes, either as "run-and-forget" or "run-and-keep-running" modes. UsageRun-and-forgetUseful when you want to spawn a CLI process and make it run in the background. You will NOT get any return from the process itself. Basic usage:
Run-and-keep-runningUseful when you want to spawn CLI processes and keep them running no matter what. The class monitors the PID of the processes to check if they are still running, and restarts automatically if needed. Basic usage:
If a process fails to execute due to a non-existing script, you can set the time the class will wait to retry the execution (default, 5 seconds). You can also configure the AsyncMultiProcess to abort execution if non-existing script is detected, effectively canceling everything (running processes will not be closed, though). |