gearman_job_handle_t.rst 902 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. =================================
  2. Job handle (gearman_job_handle_t)
  3. =================================
  4. --------
  5. SYNOPSIS
  6. --------
  7. #include <libgearman/gearman.h>
  8. .. c:type:: gearman_job_handle_t
  9. -----------
  10. DESCRIPTION
  11. -----------
  12. A :c:type:`gearman_job_handle_t` represents a "job handle". A job handle is
  13. a text string that represents the name of a task (in truth
  14. gearman_job_handle_t is a typedef'ed
  15. char[:c:macro:`GEARMAN_JOB_HANDLE_SIZE`]).
  16. :c:func:`gearman_client_job_status` use handles to find the status of tasks. When passed to :c:func:`gearman_client_do_background` it will be populated with the job handle.
  17. ------------
  18. RETURN VALUE
  19. ------------
  20. None.
  21. ----
  22. HOME
  23. ----
  24. To find out more information please check:
  25. `https://gearman.org/gearmand/ <https://gearman.org/gearmand/>`_
  26. --------
  27. SEE ALSO
  28. --------
  29. :manpage:`gearmand(8)` :manpage:`libgearman(3)` :c:type:`gearman_job_st`