Code Monkey home page Code Monkey logo

yii2-ironmq's Introduction

yii2-ironmq

A Yii2 extension for IronMQ V3

This is an extension for Yii2 that makes it easy to use IronMq V3.

Add it to the composer file

"require": {
    "php": ">=5.4.0",
    "yiisoft/yii2": "*",
    "yiisoft/yii2-bootstrap": "*",
    "yiisoft/yii2-swiftmailer": "*",
  	"br0sk/yii2-ironmq": "0.*",
},

You can configure it in your application components configuration like so:

'ironmq' => [
	//Mandatory config values
    'class' => 'br0sk\ironmq\IronMQ',
    'projectId' 	=> 'yourprojectid',
    'token' 		=> 'yourtoken'
	//Optional config values
	'protocol'  	=> 'https',
    'host'      	=> 'mq-aws-us-east-1-1.iron.io',
    'port'      	=> '443',
    'api_version' 	=> '3'
],

note: You can find the project id and token in the HUD for your V3 queue if you log in here. The tokens can be found on their own page here here.

An example of typical usage:

	//Push a message to the queue
	$pushedMessage = Yii::$app->ironmq->postMessage("queue_name", "Test Message");
	//Reserve a message from the queue to process it
	$message = Yii::$app->ironmq->reserveMessage('queue_name');
	//When processing is done remove the message from the queue
	$deltedResult = Yii::$app->ironmq->deleteMessage('queue_name', $message->id, $message->reservation_id);

You can now use all the calls in the IronMQ API.

This extension is a wrapper for irom_mq_php

yii2-ironmq's People

Contributors

br0sk avatar

Stargazers

 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.