定制 famelo/scheduler 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

famelo/scheduler

Composer 安装命令:

composer require famelo/scheduler

包简介

README 文档

README

Setup a cronjob for the Scheduler:

* * * * * /path/to/flow scheduler:run

Create a new Task:

class MyTask implements \Famelo\Scheduler\Tasks\TaskInterface {
    /**
     * Returns the Interval at which this task will be run
     * The Syntax is equivalent to cron.
     * Check the mtdowling/cron-expression package for more information:
     *     https://github.com/mtdowling/cron-expression
     *
     * @return string $interval
     */
    public function getInterval() {
        return '*/15 * * * *';
    }

    /**
     * Execute the Task
     *
     * @return void
     */
    public function execute() {
        // Let's do something...
    }
}
?>

The Interval is based on mtdowling/cron-expression which is based on the cron syntax

统计信息

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

GitHub 信息

  • Stars: 4
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2012-12-10