123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- .TH "GEARMAN_CLIENT_DO_STATUS" "3" "June 07, 2011" "0.21" "Gearmand"
- .SH NAME
- gearman_client_do_status \- Gearmand Documentation
- .
- .nr rst2man-indent-level 0
- .
- .de1 rstReportMargin
- \\$1 \\n[an-margin]
- level \\n[rst2man-indent-level]
- level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
- -
- \\n[rst2man-indent0]
- \\n[rst2man-indent1]
- \\n[rst2man-indent2]
- ..
- .de1 INDENT
- .\" .rstReportMargin pre:
- . RS \\$1
- . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
- . nr rst2man-indent-level +1
- .\" .rstReportMargin post:
- ..
- .de UNINDENT
- . RE
- .\" indent \\n[an-margin]
- .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
- .nr rst2man-indent-level -1
- .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
- .in \\n[rst2man-indent\\n[rst2man-indent-level]]u
- ..
- .\" Man page generated from reStructeredText.
- .
- .SH LIBRARY
- .sp
- C Client Library for Gearmand (libgearman, \-lgearman)
- .SH SYNOPSIS
- .sp
- #include <libgearman/gearman.h>
- .INDENT 0.0
- .TP
- .B gearman_client_st
- .UNINDENT
- .INDENT 0.0
- .TP
- .B int gearman_client_timeout(gearman_client_st *client);
- .UNINDENT
- .INDENT 0.0
- .TP
- .B void gearman_client_set_timeout(gearman_client_st *client, int timeout);
- .UNINDENT
- .INDENT 0.0
- .TP
- .B void *gearman_client_context(const gearman_client_st *client);
- .UNINDENT
- .INDENT 0.0
- .TP
- .B void gearman_client_set_context(gearman_client_st *client, void *context);
- .UNINDENT
- .INDENT 0.0
- .TP
- .B void gearman_client_set_log_fn(gearman_client_st *client, gearman_log_fn *function, void *context, gearman_verbose_t verbose);
- .UNINDENT
- .INDENT 0.0
- .TP
- .B void gearman_client_set_workload_malloc_fn(gearman_client_st *client, gearman_malloc_fn *function, void *context);
- .UNINDENT
- .INDENT 0.0
- .TP
- .B void gearman_client_set_workload_free_fn(gearman_client_st *client, gearman_free_fn *function, void *context);
- .UNINDENT
- .INDENT 0.0
- .TP
- .B gearman_return_t gearman_client_job_status(gearman_client_st *client, const char *job_handle, bool *is_known, bool *is_running, uint32_t *numerator, uint32_t *denominator);
- .UNINDENT
- .INDENT 0.0
- .TP
- .B void gearman_client_task_free_all(gearman_client_st *client);
- .UNINDENT
- .INDENT 0.0
- .TP
- .B void gearman_client_set_task_context_free_fn(gearman_client_st *client, gearman_task_context_free_fn *function);
- .UNINDENT
- .INDENT 0.0
- .TP
- .B void gearman_client_clear_fn(gearman_client_st *client);
- .UNINDENT
- .SH DESCRIPTION
- .sp
- gearman_client_st is used to create a client that can communicate with a
- Gearman server.
- .sp
- This a complete list of all functions that work with a gearman_client_st.
- .SH RETURN VALUE
- .sp
- Various
- .SH HOME
- .sp
- To find out more information please check:
- \fI\%https://launchpad.net/gearmand\fP
- .SH SEE ALSO
- .sp
- \fIgearmand(8)\fP \fIlibgearman(3)\fP
- .RE
- .SH AUTHOR
- Data Differential http://datadifferential.com/
- .SH COPYRIGHT
- 2011, Data Differential, http://datadifferential.com/
- .\" Generated by docutils manpage writer.
- .\"
- .
|