Git Product home page Git Product logo

queue's Introduction

Charcoal Queue

The Queue package provides an abstract queue service to defer the processing of time consuming tasks.

Installation

composer require charcoal/queue

Usage

Queueing System

Queue managers loop queue items. Queue items represent actions to be performed (as defined by the process() method).

Queue Manager

The queue manager is available as an abstract class: AbstractQueueManager. This class implements the QueueManagerInterface.

The processing speed (throttle) can be controlled via the rate property, in items per second.

The batch limit (number of items to process per iteration) can be controlled with the limit property.

The queue can be identified with the queue_id. It can be set with setQueueId().

The queue can be processed with processQueue(). If for any reason the items need to be loaded, it can be done with loadQueueItems().

There are 4 callbacks that can be defined:

  • setProcessedCallback()
  • setItemCallback()
  • setItemSuccessCallbak()
  • setItemFailureCallback()

There are only 1 abstract method:

  • queueItemProto() which must returns a QueueItemInterface instance

Queue Items

Queue Items should implement the QueueItemInterface. This can be helped via the QueueItemTrait.

Queue items can be identified with a queue_id. (The same queue_id used by the queue manager).

Items can be processed with process($callback, $successCallback, $failureCallback).

The queue item properties are:

  • queue_id
  • queue_item_data
  • queued_date
  • processing_date
  • processed_date
  • processed

Queuable Objects

The QueueableInterface defines objects that can be queued. This interface is really simple and only provides:

  • setQueueId() which can be inherited from QueueableTrait
  • queueId() (queue_id getter) which can be inherited from QueueableTrait
  • queue($ts = null) which is abstract and must be written inside class which implement the queueable interface

Resources

queue's People

Contributors

actions-user avatar joelalphonso avatar losted avatar mcaskill avatar mducharme avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.