blob: 7650df62fea1e61995a70557a7668b9e7f4a32cd (
plain)
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
51
|
<?php
namespace jobd;
class WorkerClient extends Client {
public function __construct(int $port = Client::WORKER_PORT, ...$args)
{
parent::__construct($port, ...$args);
}
/**
* @return ResponseMessage
* @throws \Exception
*/
public function status(): ResponseMessage
{
return $this->recv(
$this->sendRequest(new RequestMessage('status'))
);
}
/**
* @param string[] $targets
* @return ResponseMessage
* @throws \Exception
*/
public function poll(array $targets = []): ResponseMessage
{
$data = [];
if (!empty($targets))
$data['targets'] = $targets;
return $this->recv(
$this->sendRequest(new RequestMessage('poll', $data))
);
}
/**
* @param int[] $ids
* @return ResponseMessage
* @throws \Exception
*/
public function runManual(array $ids): ResponseMessage
{
return $this->recv(
$this->sendRequest(new RequestMessage('run-manual', ['ids' => $ids]))
);
}
}
|