0
7
Login
Code
Issues
Pull requests
Events
Packages
9e7901c850b2535a62ad6149444d397e3b415056
9e7901c850b2535a62ad6149444d397e3b415056

Amqp Job

Latest Stable Version Total Downloads License

The amqp job component for Hyperf.

Installation

composer require friendsofhyperf/amqp-job

Usage

use FriendsOfHyperf\AmqpJob\Job;
use function FriendsOfHyperf\AmqpJob\dispatch;

class FooJob extends Job
{
    public function handle()
    {
        var_dump('foo');
    }
}

dispatch(new FooJob());

Contact

License

MIT