2017 © Pedro Peláez
 

fuel-package queue

FuelPHP library to integrate easy RabbitMQ publish/consume

image

synergitech/queue

FuelPHP library to integrate easy RabbitMQ publish/consume

  • Tuesday, July 31, 2018
  • by Josh-G
  • Repository
  • 3 Watchers
  • 0 Stars
  • 884 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 7 % Grown

The README.md

synergitech/queue

An abstraction over RabbitMQ for use in FuelPHP., (*1)

Installation

$ composer require synergitech/queue 

Usage

class MyTask
{
  public static function sum(...$args)
  {
    return array_sum($args);
  }
}

Queue\Task::enqueue([MyTask::class, 'sum'], [2, 4], 3); # 6

Configuration

  • autorun (array) a list of environments where the job is executed immediately, rather than enqueuing a job in RabbitMQ. Defaults to ['development'], which means that by default, jobs will immediately execute in development., (*2)

  • queue.host (string) the host where your RabbitMQ instance can be found, defaults to '127.0.0.1', (*3)

  • queue.port (int) the port where your RabbitMQ instance can be found, defaults to 5672
  • queue.user (string) the RabbitMQ username, defaults to 'guest'
  • queue.password (string) the RabbitMQ password, defaults to 'guest'
  • queue.vhost (string) the RabbitMQ virtual host, defaults to '/'

The Versions

31/07 2018

dev-master

9999999-dev https://github.com/synergitech/fuelphp-queue

FuelPHP library to integrate easy RabbitMQ publish/consume

  Sources   Download

MIT

The Requires

 

by SynergiTech

17/07 2018

v0.1.3

0.1.3.0 https://github.com/synergitech/fuelphp-queue

FuelPHP library to integrate easy RabbitMQ publish/consume

  Sources   Download

MIT

The Requires

 

by SynergiTech

02/05 2018

v0.1.2

0.1.2.0 https://github.com/synergitech/fuelphp-queue

FuelPHP library to integrate easy RabbitMQ publish/consume

  Sources   Download

MIT

The Requires

 

by SynergiTech

13/10 2017

v0.1.1

0.1.1.0 https://github.com/synergitech/fuelphp-queue

FuelPHP library to integrate easy RabbitMQ publish/consume

  Sources   Download

MIT

The Requires

 

by SynergiTech

25/05 2017

v0.1

0.1.0.0 https://github.com/synergitech/fuelphp-queue

FuelPHP library to integrate easy RabbitMQ publish/consume

  Sources   Download

MIT

The Requires

 

by SynergiTech