mggflow/vkflow

v2.0.0 2023-03-06 15:38 UTC

This package is auto-updated.

Last update: 2024-09-06 18:39:44 UTC


README

关于

此包是 VKFLOW 服务后端逻辑的核心。

用法

安装示例

composer require mggflow/vkflow

执行任务示例

// Implements Interfaces/TaskQueue.
$taskQueue = new TaskQueue();
// Implements Interfaces/TaskFabric.
$taskFabric = new TaskFabric();
// Implements Interfaces/TaskResultHandlerFabric.
$taskResultHandlerFabric = new TaskResultHandlerFabric();
// Implements Interfaces/ProfileData.
$profileData = new ProfileData();

$worker = new Worker($profileData, $taskQueue, $taskFabric, $taskResultHandlerFabric);
$worker->perform();