reactphp / async

Async utilities and fibers for ReactPHP.
https://reactphp.org/async/
MIT License
204 stars 19 forks source link

[3.x] Add new `delay()` function to delay program execution #71

Closed clue closed 1 year ago

clue commented 1 year ago

This changeset backports #69 from 4.x to 3.x. Documentation and tests have been updated because only v4 offers an async() function that takes advantage of fibers (PHP 8.1+). The v3 version may block the loop, but otherwise offers the same API to provide a smoother upgrade path towards the fiber-based delay() available in v4.

Builds on top of #69 Refs #15