1gearman_client_job_status(3) Gearman gearman_client_job_status(3)
2
3
4
6 gearman_client_job_status - Single Task Interface
7
9 #include <libgearman/gearman.h>
10
11 gearman_return_t gearman_client_job_status(gearman_client_st *client,
12 const char *job_handle, bool *is_known, bool *is_running, uint32_t
13 *numerator, uint32_t *denominator);
14
16 Get the status for a backgound job. *
17
19 [in] client Structure previously initialized with gear‐
20 man_client_create() or gearman_client_clone().
21
22 [in] job_handle The job handle to get status for.
23
24 [out] is_known Optional parameter to store the known status in.
25
26 [out] is_running Optional parameter to store the running status
27 in.
28
29 [out] numerator Optional parameter to store the numerator in.
30
31 [out] denominator Optional parameter to store the denominator
32 in.
33
35 Standard gearman return value.
36
38 The Gearman homepage: http://www.gearman.org/
39
41 Bugs should be reported at https://bugs.launchpad.net/gearmand
42
44 Copyright (C) 2008 Brian Aker, Eric Day. All rights reserved.
45
46 Use and distribution licensed under the BSD license. See the COPYING
47 file in the original source for full text.
48
49
50
51Gearman 2010-03-15 gearman_client_job_status(3)