* - http://tizen.org/feature/battery
* - http://tizen.org/feature/usb.host
*
- * It is recommended to design feature related code in your application for reliability.
- * You can check if the device supports the related features for this API by using @ref CAPI_SYSTEM_INFO_MODULE, thereby controlling the procedure of your application.
- * To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.
- * More details on featuring your application can be found from <a href="https://developer.tizen.org/development/tizen-studio/native-tools/configuring-your-app/manifest-text-editor#feature"><b>Feature Element</b>.</a>
+ * It is recommended to use features in your application for reliability.
+ * You can check if the device supports the related features for this API by using @ref CAPI_SYSTEM_INFO_MODULE, and control your application's actions accordingly.
+ * To ensure your application is only running on devices with specific features, please define the features in your manifest file using the manifest editor in the SDK.
+ * More details on using features in your application can be found in <a href="https://developer.tizen.org/development/tizen-studio/native-tools/configuring-your-app/manifest-text-editor#feature"><b>Feature Element</b>.</a>
*/
#endif /* __TIZEN_APPFW_JOB_SCHEDULER_DOC_H__ */
#endif
/**
- * @addtogroup CAPI_APPLICATION_MODULE
+ * @addtogroup CAPI_JOB_SCHEDULER_MODULE
* @{
*/
* @brief Cancels all scheduled jobs.
* @since_tizen 4.0
* @return @c 0 on success,
- * otherwise a nagative error value
+ * otherwise a negative error value
* @retval #JOB_ERROR_NONE Successful
* @retval #JOB_ERROR_NOT_INITIALIZED Not initialized
* @retval #JOB_ERROR_IO_ERROR IO error
int job_scheduler_cancel_all(void);
/**
- * @brief Notify that the job is finished.
+ * @brief Notifies that the job is finished.
* @since_tizen 4.0
* @remarks If the job has been launched, the system kept awake for a while.
* It is highly recommended to notify that the job is done,
/**
* @brief Adds job service handler for receiving the information of the scheduled job.
* @since_tizen 4.0
+ * @remarks The @a job_service handle should be released using job_scheduler_service_remove().
* @param[in] job_id The ID of the job
* @param[in] callback The set of callback functions to handle jobs
* @param[in] user_data The user data to be passed to the callback function
* otherwise a negative error value
* @retval #JOB_ERROR_NONE Successful
* @retval #JOB_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #JOB_ERROR_NOT_INITIALIZED Not initialzed
+ * @retval #JOB_ERROR_NOT_INITIALIZED Not initialized
* @pre job_scheduler_init() MUST be called.
* @see job_scheduler_init()
* @see job_scheduler_service_add()