notamedia / bitrix-agent-manager
1.0.0-beta
2016-01-06 09:36 UTC
Requires
- php: >=5.4.0
- composer/installers: ~1
This package is not auto-updated.
Last update: 2019-08-19 09:33:24 UTC
README
此模块有助于在 Bitrix 的代理上创建简单的工人。
安装
composer require notamedia/bitrix-agent-manager
使用方法
扩展抽象类 Agent 以创建您的简单工人。例如
use Notamedia\AgentManager\Agent; class SimpleWorker extends Agent { protected $recurring = false; // Agent is not recurring. protected $parameter; public function __construct($parameter) { parent::__construct(); $this->parameter = $parameter; } protected function init() { // Preparatory operations. } protected function execute() { // The basic logic of worker. } }
并在 Bitrix 中注册您的代理