2017 © Pedro Peláez
 

yii2-extension yii2-daemon

Yii2 daemon based on ReactPHP

image

yarcode/yii2-daemon

Yii2 daemon based on ReactPHP

  • Thursday, July 28, 2016
  • by lagman
  • Repository
  • 3 Watchers
  • 3 Stars
  • 462 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 5 % Grown

The README.md

yarcode/yii2-daemon

Yii2 daemon based on ReactPHP, (*1)

Installation

The preferred way to install this extension is through composer., (*2)

Either run, (*3)

php composer.phar require --prefer-dist yarcode/yii2-daemon

or add, (*4)

"yarcode/yii2-daemon": "*"

Usage

Extend the YarCode\Yii2\Daemon\DaemonCommand class and add your own prepare() implementation., (*5)

<?php
namespace console\controllers;

use YarCode\Yii2\Daemon\DaemonCommand;

class AsyncController extends DaemonCommand
{
    public function prepare()
    {
        $this->loop->addPeriodicTimer(1, function() {
            \Yii::$app->db->createCommand('SELECT 1')->execute();
        });
        $this->loop->addPeriodicTimer(0.1, function() {
            while ($task = \Yii::$app->async->receiveTask('search')) {
                if ($task->execute()) {
                    \Yii::$app->async->acknowledgeTask($task);
                }
            }
        });
    }
}

The Versions

28/07 2016

dev-master

9999999-dev http://packagist.org/packages/yarcode/yii2-daemon

Yii2 daemon based on ReactPHP

  Sources   Download

MIT

The Requires

 

yii2 daemon reactphp

28/07 2016

0.3.1

0.3.1.0 http://packagist.org/packages/yarcode/yii2-daemon

Yii2 daemon based on ReactPHP

  Sources   Download

MIT

The Requires

 

yii2 daemon reactphp

28/07 2016

0.3

0.3.0.0 http://packagist.org/packages/yarcode/yii2-daemon

Yii2 daemon based on ReactPHP

  Sources   Download

MIT

The Requires

 

yii2 daemon reactphp

26/07 2016

0.2

0.2.0.0 http://packagist.org/packages/yarcode/yii2-daemon-yarcode

Yii2 daemon based on ReactPHP

  Sources   Download

MIT

The Requires

 

yii2 daemon reactphp

25/07 2016

0.1.2

0.1.2.0 http://packagist.org/packages/yarcode/yii2-daemon-yarcode

Yii2 daemon based on ReactPHP

  Sources   Download

MIT

The Requires

 

yii2 daemon reactphp

25/07 2016

0.1.1

0.1.1.0 http://packagist.org/packages/yarcode/yii2-daemon-yarcode

Yii2 daemon based on ReactPHP

  Sources   Download

MIT

The Requires

 

yii2 daemon reactphp