n-singularity / async
Asynchronous for Laravel
v1.1.0
2019-12-17 06:02 UTC
Requires
- php: >=7
- illuminate/cache: ^6.0
- illuminate/config: ^6.0
- illuminate/console: ^6.0
- illuminate/contracts: ^6.0
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.0
This package is auto-updated.
Last update: 2025-03-17 17:14:07 UTC
README
this is a simple package for asynchronous laravel. Each task will be stored in the cache, and then will be executed in parallel with php artisan cli.
Setup
The preferred way to install this extension is through composer:
composer require n-singularity/async
After updating composer, add the ServiceProvider to the providers array in config/app.php
Nsingularity\Async\AsynchronousServiceProvider::class
Basic Usage
This package supports three types of functions that can be run in parallel:
1. Global Function
function sendEmail($email, $bodyEmail){ //code to send email } function foo(){ Nsingularity\Async\Async::globalFunction("sendEmail", ["email@example.com", "body email html"]); echo("done"); }
2. Function of Object
class Example { public function sendEmail($email, $bodyEmail){ //code to send email } } function foo(){ Nsingularity\Async\Async::objectFunction(new Example, "sendEmail", ["email@example.com", "body email html"]); echo("done"); }
3. Object (must inplements AsyncableClassInterface)
class Example implements \Nsingularity\Async\AsyncableClassInterface { private $email; private $bodyEmail; public function __construct($email, $bodyEmail){ $this->email = $email; $this->bodyEmail = $bodyEmail; } public function handler(){ //code to send email } } function foo(){ Nsingularity\Async\Async::object(new Example("email@example.com", "body email html")); echo("done"); }
Get Response From Async
function createText($a, $b) { sleep(5); return $a . " " . $b; } function foo(){ $ts = time(); $handler1 = Nsingularity\Async\Async::globalFunction("createText" ,["hello","world"]); $handler2 = Nsingularity\Async\Async::globalFunction("createText" ,["hello","hello"]); $handler3 = Nsingularity\Async\Async::globalFunction("createText" ,["world","world"]); $text1 = $handler1->get(); $text2 = $handler2->get(); $text3 = $handler3->get(); $te = time(); echo $text1." | ".$text2." | ".$text3." | ".$te-$ts; // hello world | hello hello | world world | 6 }