From c3fa113769dce4bd97ee4e3b193409d97b569534 Mon Sep 17 00:00:00 2001 From: Evgeny Zinoviev Date: Fri, 26 Feb 2021 18:09:01 +0300 Subject: examples: improve examples --- example/run-manual.php | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 example/run-manual.php (limited to 'example/run-manual.php') diff --git a/example/run-manual.php b/example/run-manual.php new file mode 100644 index 0000000..5f9c43d --- /dev/null +++ b/example/run-manual.php @@ -0,0 +1,29 @@ +real_connect('10.211.55.6', 'jobd', 'password', 'jobd')) + die('Failed to connect.'); + +// adding manual task +$target = 'server1'; +$time = time(); +if (!$db->query("INSERT INTO jobs (target, slot, time_created, status) VALUES ('server1', 'normal', $time, 'manual')")) + die($db->error); + +$id = $db->insert_id; + +try { + // connecting to jobd + $client = new jobd\Client(jobd\Client::WORKER_PORT); + + // launching task + $result = $client->runManual($id); + + // printing the result + print_r($result->getData()); +} catch (Exception $e) { + die($e->getMessage()); +} -- cgit v1.2.3