Files
kiri-http-server/Task/OnTaskInterface.php
T

18 lines
237 B
PHP
Raw Permalink Normal View History

2025-07-11 11:50:54 +08:00
<?php
namespace Kiri\Server\Task;
interface OnTaskInterface
{
/**
* @param int $task_id
* @param int $src_worker_id
* @return mixed
*/
public function process(int $task_id, int $src_worker_id): mixed;
}