-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathWorkerman.php
More file actions
50 lines (40 loc) · 1.13 KB
/
Workerman.php
File metadata and controls
50 lines (40 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
namespace Utopia\Queue\Adapter;
use Utopia\Queue\Adapter;
use Utopia\Queue\Consumer;
use Workerman\Worker;
class Workerman extends Adapter
{
protected Worker $worker;
public function __construct(Consumer $consumer, int $workerNum, string $queue, string $namespace = 'utopia-queue')
{
parent::__construct($workerNum, $queue, $namespace);
$this->worker = new Worker();
$this->worker->count = $workerNum;
$this->consumer = $consumer;
}
public function start(): self
{
Worker::runAll();
return $this;
}
public function stop(): self
{
Worker::stopAll();
return $this;
}
public function workerStart(callable $callback): self
{
$this->worker->onWorkerStart = function ($worker) use ($callback) {
call_user_func($callback, $worker->workerId);
};
return $this;
}
public function workerStop(callable $callback): self
{
$this->worker->onWorkerStop = function ($worker) use ($callback) {
call_user_func($callback, $worker->workerId);
};
return $this;
}
}