aboutsummaryrefslogtreecommitdiff
path: root/src/WorkerClient.php
blob: 8b979af18fb4bca4fb7fb59457d940e0723a437a (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?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]))
        );
    }

    /**
     * @param string $target
     * @param int $concurrency
     * @return ResponseMessage
     * @throws Exception
     */
    public function setTargetConcurrency(string $target, int $concurrency): ResponseMessage
    {
        return $this->recv(
            $this->sendRequest(new RequestMessage('set-target-concurrency', [
                'target' => $target,
                'concurrency' => $concurrency
            ]))
        );
    }

}