blob: 4e221dff0be3d40ad062fc2af309a6e3749147bb (
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
|
<?php
namespace jobd;
class WorkerClient extends Client {
/**
* @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
{
return $this->recv(
$this->sendRequest(new RequestMessage('poll', ['targets' => $targets]))
);
}
/**
* @param int[] $ids
* @return ResponseMessage
* @throws \Exception
*/
public function runManual(array $ids): ResponseMessage
{
return $this->recv(
$this->sendRequest(new RequestMessage('run-manual', ['ids' => $ids]))
);
}
}
|