~vjsamuel/gearmand/fix-bug-868883

« back to all changes in this revision

Viewing changes to docs/man/gearman_client_set_timeout.3

  • Committer: Brian Aker
  • Date: 2011-06-22 15:49:27 UTC
  • mfrom: (439.1.7 gearmand-trunk)
  • Revision ID: brian@tangent.org-20110622154927-ezro6sntfu48zf1q
Merge in curent ttrunk into the mainline.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.TH "GEARMAN_CLIENT_SET_TIMEOUT" "3" "June 19, 2011" "0.22" "Gearmand"
 
1
.TH "GEARMAN_CLIENT_SET_TIMEOUT" "3" "June 21, 2011" "0.22" "Gearmand"
2
2
.SH NAME
3
3
gearman_client_set_timeout \- Gearmand Documentation, http://gearman.info/
4
4
.
57
57
.TP
58
58
.B void gearman_client_set_workload_malloc_fn(\fI\%gearman_client_st\fP\fI\ *client\fP, gearman_malloc_fn\fI\ *function\fP, void\fI\ *context\fP)
59
59
.UNINDENT
 
60
.sp
 
61
Deprecated since version 0.23: Use \fBgearman_allocator_t\fP
60
62
.INDENT 0.0
61
63
.TP
62
64
.B void gearman_client_set_workload_free_fn(\fI\%gearman_client_st\fP\fI\ *client\fP, gearman_free_fn\fI\ *function\fP, void\fI\ *context\fP)
63
65
.UNINDENT
 
66
.sp
 
67
Deprecated since version 0.23: Use \fBgearman_allocator_t\fP
64
68
.INDENT 0.0
65
69
.TP
66
70
.B void gearman_client_task_free_all(\fI\%gearman_client_st\fP\fI\ *client\fP)
81
85
.sp
82
86
\fI\%gearman_client_timeout()\fP and \fI\%gearman_client_set_timeout()\fP get and set the current timeout value, in milliseconds, for the client.
83
87
.sp
84
 
Normally \fImalloc(3)\fP and \fIfree(3)\fP are used for allocation and releasing workloads. \fI\%gearman_client_set_workload_malloc_fn()\fP and \fI\%gearman_client_set_workload_free_fn()\fP can be used to replace these with custom functions.
 
88
Normally \fImalloc(3)\fP and \fIfree(3)\fP are used for allocation and releasing workloads. \fI\%gearman_client_set_workload_malloc_fn()\fP and \fI\%gearman_client_set_workload_free_fn()\fP can be used to replace these with custom functions. (These have been deprecated, please see \fBgearman_allocator_t\fP for the updated interface.
85
89
.sp
86
90
\fI\%gearman_client_task_free_all()\fP is used to free all current \fBgearman_task_st\fP that have been created with the \fI\%gearman_client_st\fP.
87
91
.IP Warning