connectholland/tactician-scheduler-plugin 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

connectholland/tactician-scheduler-plugin

最新稳定版本:1.1.1

Composer 安装命令:

composer require connectholland/tactician-scheduler-plugin

包简介

Tactician plugin that allows scheduling a command to be executed at a specific time in the future

README 文档

README

Tactician plugin that allows scheduling a command to be executed at a specific time in the future

Build Status Coverage Status SensioLabsInsight Latest Stable Version Total Downloads Latest Unstable Version License

Concept

This plugin allows you to create ScheduledCommands that will be executed at a specific time in the future.

Usage

Make sure you put the SchedulerMiddleware in your CommandBus middleware chain:

// create your other middleware
$middleware[] = new SchedulerMiddleware(new FileBasedScheduler($pathWhereTheSchedulerMayKeepItsFiles) );
// create your other middleware
$commandbus = new CommandBus($middleware);

Let the command you want to schedule extend from AbstractScheduledCommand or implement the ScheduledCommandInterface. Create it and set a execution time:

class SayHappyNewYear extends AbstractScheduledCommand
{
    private $message;

    public function __construct($message)
    {
        $this->message = $message;
    }

    public function getMessage() 
    {
        return $this->message;
    }
}

$myScheduledCommand = new SayHappyNewYear('Happy New Year');
$myScheduledCommand->setTimestamp(strtotime('2016-01-01 0:00:00') );
$myCommandBus->handle($myScheduledCommand);

Create a bootstrap file that builds your Commandbus and cron the schedule execution command, for example bootstrap.php

// setup any environment you need
// create your other middleware
$middleware[] = new SchedulerMiddleware(new FileBasedScheduler($pathWhereTheSchedulerMayKeepItsFiles) );
// create your other middleware
$commandbus = new CommandBus($middleware);
return $commandbus;

Cron the scheduler at any interval you like (the more it runs, the better you can time your commands), example for once a minute

* * * * *   www-data    vendor/bin/scheduler scheduler:execute bootstrap.php

Or you can use the daemon command that ships with the package, to schedule an iteration every 10 seconds use:

vendor/bin/scheduler scheduler:daemon bootstrap.php 10

To make it stop after a minute use:

vendor/bin/scheduler scheduler:daemon bootstrap.php 10 6

统计信息

  • 总下载量: 3.52k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 21
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 21
  • Watchers: 4
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-08-18