2017 © Pedro Peláez
 

library queue

Queue.

image

timur-flush/queue

Queue.

  • Saturday, July 21, 2018
  • by TimurFlush
  • Repository
  • 0 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Build Status Coverage Status, (*1)

Queue

Component provides a unified API across a variety of different queue services. Queues allow you to defer the processing of a time consuming task, such as sending an e-mail, until a later time, thus drastically speeding up the web requests to your application., (*2)

Using

Note that the EventsManager service must be registered in the dependency container and must return the \Phalcon\Events\Manager interface instance, (*3)

In Dependency Injector:, (*4)


use TimurFlush\Queue\Adapter\Beanstalk as BeanstalkQueue; $di->setShared('queue', function() { /* By default, Beanstalk uses IP 127.0.0.1 and Port 11300, * but you can easily override them by passing new values * to the constructor. */ return new BeanstalkQueue( [ 'host' => '127.0.0.1', 'port' => '11300', //'persistent' => true, //if necessary ] ); });

Author

Timur Flush, (*5)

Requirements

PHP ^7.2.0, (*6)

Phalcon ^3.4.0, (*7)

Version

1.0.0 Beta 1, (*8)

License

BSD-3-License, (*9)

The Versions

21/07 2018

dev-master

9999999-dev

Queue.

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by flush02

21/07 2018

dev-1.x-dev

dev-1.x-dev

Queue.

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by flush02

21/07 2018

v1.0.0

1.0.0.0

Queue.

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by flush02