#define GEARMAN_DEFAULT_BACKLOG 64 |
Definition at line 27 of file constants.h.
#define GEARMAN_DEFAULT_MAX_QUEUE_SIZE 0 |
Definition at line 28 of file constants.h.
#define GEARMAN_SERVER_CON_ID_SIZE 128 |
Definition at line 29 of file constants.h.
#define GEARMAN_JOB_HASH_SIZE 383 |
Definition at line 30 of file constants.h.
#define GEARMAN_MAX_FREE_SERVER_CON 1000 |
Definition at line 31 of file constants.h.
#define GEARMAN_MAX_FREE_SERVER_PACKET 2000 |
Definition at line 32 of file constants.h.
#define GEARMAN_MAX_FREE_SERVER_JOB 1000 |
Definition at line 33 of file constants.h.
#define GEARMAN_MAX_FREE_SERVER_CLIENT 1000 |
Definition at line 34 of file constants.h.
#define GEARMAN_MAX_FREE_SERVER_WORKER 1000 |
Definition at line 35 of file constants.h.
#define GEARMAN_TEXT_RESPONSE_SIZE 8192 |
Definition at line 36 of file constants.h.
#define GEARMAN_PIPE_BUFFER_SIZE 256 |
Definition at line 37 of file constants.h.
#define GEARMAN_CONF_MAX_OPTION_SHORT 128 |
Definition at line 38 of file constants.h.
#define GEARMAN_CONF_DISPLAY_WIDTH 80 |
Definition at line 39 of file constants.h.
typedef struct gearman_server_st gearman_server_st |
Definition at line 42 of file constants.h.
typedef struct gearman_server_thread_st gearman_server_thread_st |
Definition at line 43 of file constants.h.
typedef struct gearman_server_con_st gearman_server_con_st |
Definition at line 44 of file constants.h.
typedef struct gearman_server_packet_st gearman_server_packet_st |
Definition at line 45 of file constants.h.
typedef struct gearman_server_function_st gearman_server_function_st |
Definition at line 46 of file constants.h.
typedef struct gearman_server_client_st gearman_server_client_st |
Definition at line 47 of file constants.h.
typedef struct gearman_server_worker_st gearman_server_worker_st |
Definition at line 48 of file constants.h.
typedef struct gearman_server_job_st gearman_server_job_st |
Definition at line 49 of file constants.h.
typedef struct gearmand_st gearmand_st |
Definition at line 50 of file constants.h.
typedef struct gearmand_port_st gearmand_port_st |
Definition at line 51 of file constants.h.
typedef struct gearmand_con_st gearmand_con_st |
Definition at line 52 of file constants.h.
typedef struct gearmand_thread_st gearmand_thread_st |
Definition at line 53 of file constants.h.
typedef struct gearman_conf_st gearman_conf_st |
Definition at line 54 of file constants.h.
typedef struct gearman_conf_option_st gearman_conf_option_st |
Definition at line 55 of file constants.h.
typedef struct gearman_conf_module_st gearman_conf_module_st |
Definition at line 56 of file constants.h.
typedef void( gearman_server_thread_run_fn)(gearman_server_thread_st *thread, void *context) |
Definition at line 188 of file constants.h.
typedef gearman_return_t( gearman_queue_add_fn)(gearman_server_st *server, void *context, const void *unique, size_t unique_size, const void *function_name, size_t function_name_size, const void *data, size_t data_size, gearman_job_priority_t priority) |
Definition at line 191 of file constants.h.
typedef gearman_return_t( gearman_queue_flush_fn)(gearman_server_st *server, void *context) |
Definition at line 200 of file constants.h.
typedef gearman_return_t( gearman_queue_done_fn)(gearman_server_st *server, void *context, const void *unique, size_t unique_size, const void *function_name, size_t function_name_size) |
Definition at line 202 of file constants.h.
typedef gearman_return_t( gearman_queue_replay_fn)(gearman_server_st *server, void *context, gearman_queue_add_fn *add_fn, void *add_context) |
Definition at line 208 of file constants.h.
typedef gearman_return_t( gearman_con_add_fn)(gearman_con_st *con) |
Definition at line 213 of file constants.h.