@pardnchiu/adminui
Version:
AdminUI is a simple backend management system template with an intuitive interface and a modular architecture, supporting custom extensions, enabling developers to quickly build and customize backend management platforms.
85 lines (66 loc) • 2.14 kB
Markdown
# PD\Async
> PDPHP\Async is a PHP library using ReactPHP to perform asynchronous tasks, supporting task dependency handling and topological sorting.

<br>



## Features
- Asynchronous Task Execution
- Handling of Task Dependencies
- Ensuring correct execution order via Topological Sorting
## How to Use
### Install
```SHELL
composer require pardnchiu/async
```
### Use
```PHP
use PDPHP\Async;
$tasks = [
'task1' => [
'method' => function () {
return 'result1';
},
'tasks' => [],
],
'task2' => [
'method' => function () {
return 'result2';
},
'tasks' => ['task1'], // Run after task1
],
'task3' => [
'method' => function () {
return 'result3';
},
'tasks' => ['task1'], // Run after task1
],
'task4' => [
'method' => function () {
return 'result3';
},
'tasks' => ['task2'], // Run after task2
],
];
Async::run($tasks)
->then(function ($results) {
print_r($results);
})
->catch(function ($error) {
echo 'Error: ' . $error->getMessage();
});
```
## License
This source code project is licensed under the [MIT](https://github.com/pardnchiu/PHPAsync/blob/main/LICENSE) license.
## Creator
<img src="https://avatars.githubusercontent.com/u/25631760" align="left" width="96" height="96" style="margin-right: 0.5rem;">
<h4 style="padding-top: 0">邱敬幃 Pardn Chiu</h4>
<a href="mailto:dev@pardn.io" target="_blank">
<img src="https://pardn.io/image/email.svg" width="48" height="48">
</a> <a href="https://linkedin.com/in/pardnchiu" target="_blank">
<img src="https://pardn.io/image/linkedin.svg" width="48" height="48">
</a>
***
©️ 2024 [邱敬幃 Pardn Chiu](https://pardn.io)