logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

gearman_result_store_string - Gearmand Documentation, http://gearman.info/

Author

Description

       The  gearman_result_st type represents a result set. gearman_aggregator_fn is passed on these types which
       it uses to create a final result that is returned to the client.

       gearman_task_result() returns gearman_result_st from a gearman_task_st.

       A gearman_result_st can return the resulting value as either a char pointer,  boolean,  gearman_string_t,
       or int64_t.

Name

       gearman_result_store_string - Gearmand Documentation, http://gearman.info/

See Also

gearmand(8)libgearman(3)gearman_client_error() or gearman_worker_error()

Synopsis

       #include <libgearman/gearman.h>

       typegearman_result_stgearman_result_st*gearman_task_result(gearman_task_st*task)int64_tgearman_result_integer(constgearman_result_st*self)boolgearman_result_boolean(constgearman_result_st*self)gearman_string_tgearman_result_string(constgearman_result_st*self)gearman_return_tgearman_result_store_string(gearman_result_st*self,gearman_string_targ)voidgearman_result_store_integer(gearman_result_st*self,int64_tvalue)gearman_return_tgearman_result_store_value(gearman_result_st*self,constvoid*value,size_tsize)size_tgearman_result_size(constgearman_result_st*self)constchar*gearman_result_value(constgearman_result_st*self)boolgearman_result_is_null(constgearman_result_st*self)

       Compile and link with -lgearman

See Also