Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gearman_client_set_log_fn(3) [debian man page]

GEARMAN_CLIENT_SET_LOG_FN(3)					     Gearmand					      GEARMAN_CLIENT_SET_LOG_FN(3)

NAME
gearman_client_set_log_fn - Gearmand Documentation, http://gearman.info/ SYNOPSIS
#include <libgearman/gearman.h> void gearman_client_set_log_fn(gearman_worker_st *worker, gearman_log_fn *function, void *context, gearman_verbose_t verbose) DESCRIPTION
gearman_client_set_log_fn() is similar to gearman_worker_set_log_fn() but it used with clients, aka, gearman_client_st. gearman_client_set_log_fn() allows you to register a callback that will be passed all error messages that are givin to the client. See gearman_log_fn for more information on the callback. See gearman_verbose_t for more information on logging levels. RETURN VALUE
None HOME
To find out more information please check: http://gearman.info/ SEE ALSO
gearmand(8) libgearman(3) gearman_log_fn(3) AUTHOR
Data Differential http://www.datadifferential.com/ COPYRIGHT
2012, Data Differential, http://www.datadifferential.com/ 0.33 May 04, 2012 GEARMAN_CLIENT_SET_LOG_FN(3)

Check Out this Related Man Page

GEARMAN_WORKER_ADD_SERVER(3)					     Gearmand					      GEARMAN_WORKER_ADD_SERVER(3)

NAME
gearman_worker_add_server - Gearmand Documentation, http://gearman.info/ SYNOPSIS
#include <libgearman/gearman.h> gearman_return_t gearman_worker_add_server(gearman_worker_st *worker, const char *host, in_port_t port) gearman_return_t gearman_worker_add_servers(gearman_worker_st *worker, const char *servers) void gearman_worker_remove_servers(gearman_worker_st *worker) Link with -lgearman DESCRIPTION
gearman_worker_add_server() will add an additional gearmand server to the list of servers that the worker will take work from. gearman_worker_remove_servers() will remove all servers from the gearman_worker_st. gearman_worker_add_servers() takes a list of gearmand servers that will be parsed to provide servers for the worker. The format for this is SERVER[:PORT][,SERVER[:PORT]]... Examples of this are: 10.0.0.1,10.0.0.2,10.0.0.3 localhost234,jobserver2.domain.com:7003,10.0.0.3 RETURN VALUE
gearman_worker_add_server() and gearman_worker_remove_servers() return gearman_return_t. HOME
To find out more information please check: http://gearman.info/ See also gearmand ../libgearman gearman_worker_st AUTHOR
Data Differential http://www.datadifferential.com/ COPYRIGHT
2012, Data Differential, http://www.datadifferential.com/ 0.33 May 04, 2012 GEARMAN_WORKER_ADD_SERVER(3)
Man Page