X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fmemcached_callback.pod;h=9175c29d2dc841b67b77a0fe53bbb151a91b6978;hb=55b5455291498ef63c1c34976552d58708a74732;hp=1858302cbb487fac62be51b8eee6b29570a755d5;hpb=b369db6ab57bc940618281a2be848542a406bb7c;p=awesomized%2Flibmemcached diff --git a/docs/memcached_callback.pod b/docs/memcached_callback.pod old mode 100755 new mode 100644 index 1858302c..9175c29d --- a/docs/memcached_callback.pod +++ b/docs/memcached_callback.pod @@ -1,6 +1,6 @@ =head1 NAME -memcached_callback_get memcached_callback_set +memcached_callback_get, memcached_callback_set - Get and set a callback =head1 LIBRARY @@ -10,15 +10,15 @@ C Client Library for memcached (libmemcached, -lmemcached) #include - memcached_return + memcached_return_t memcached_callback_set (memcached_st *ptr, - memcached_callback flag, + memcached_callback_t flag, void *data); void * memcached_callback_get (memcached_st *ptr, - memcached_callback flag, - memcached_return *error); + memcached_callback_t flag, + memcached_return_t *error); =head1 DESCRIPTION @@ -64,24 +64,15 @@ will copy the pointer to the clone. =item MEMCACHED_CALLBACK_MALLOC_FUNCTION -This alllows yout to pass in a customized version of malloc that will be used instead of the builtin malloc(3) call. -The prototype for this is: - -void *(*memcached_malloc_function)(memcached_st *ptr, const size_t size); +DEPRECATED: use memcached_set_memory_allocators instead. =item MEMCACHED_CALLBACK_REALLOC_FUNCTION -This alllows yout to pass in a customized version of realloc that will be used instead of the builtin realloc(3) call. -The prototype for this is: - -void *(*memcached_realloc_function)(memcached_st *ptr, void *mem, const size_t size); +DEPRECATED: use memcached_set_memory_allocators instead. =item MEMCACHED_CALLBACK_FREE_FUNCTION -This alllows yout to pass in a customized version of realloc that will be used instead of the builtin free(3) call. -The prototype for this is: - -typedef void (*memcached_free_function)(memcached_st *ptr, void *mem); +DEPRECATED: use memcached_set_memory_allocators instead. =item MEMCACHED_CALLBACK_GET_FAILURE @@ -93,7 +84,7 @@ MEMCACHED_SUCCESS or MEMCACHED_BUFFERED. Returning MEMCACHED_BUFFERED will cause the object to be buffered and not sent immediatly (if this is the default behavior based on your connection setup this will happen automatically). The prototype for this is: -memcached_return (*memcached_trigger_key)(memcached_st *ptr, char *key, size_t key_length, memcached_result_st *result); +memcached_return_t (*memcached_trigger_key)(memcached_st *ptr, char *key, size_t key_length, memcached_result_st *result); =item MEMCACHED_CALLBACK_DELETE_TRIGGER @@ -101,7 +92,7 @@ This function implements a trigger upon successful deletion of a key. The memcac in order to make use of it. The prototype for this is: -typedef memcached_return (*memcached_trigger_delete_key)(memcached_st *ptr, char *key, size_t key_length); +typedef memcached_return_t (*memcached_trigger_delete_key)(memcached_st *ptr, char *key, size_t key_length); =back @@ -109,7 +100,7 @@ typedef memcached_return (*memcached_trigger_delete_key)(memcached_st *ptr, char =head1 RETURN memcached_callback_get() return the function or structure that was provided. -Upon error, nothing is set, null is returned, and the memcached_return +Upon error, nothing is set, null is returned, and the memcached_return_t argument is set to MEMCACHED_FAILURE. memcached_callback_set() returns MEMCACHED_SUCCESS upon successful setting, @@ -118,7 +109,7 @@ otherwise MEMCACHED_FAILURE on error. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR