From: Hwankyu Jhun Date: Thu, 5 Sep 2019 09:36:57 +0000 (+0900) Subject: Update doc X-Git-Tag: submit/tizen/20191018.073749~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2f0b90c0116e337571734e29d1e9797747b649f5;p=platform%2Fcore%2Fapi%2Fcomponent-manager.git Update doc Change-Id: I9e15b115e567749d8ccaa57136d6a911260c3461 Signed-off-by: Hwankyu Jhun --- diff --git a/doc/appfw_component_manager_doc.h b/doc/appfw_component_manager_doc.h index e05fb0a..a309e4a 100755 --- a/doc/appfw_component_manager_doc.h +++ b/doc/appfw_component_manager_doc.h @@ -26,13 +26,10 @@ * \#include * * @section CAPI_COMPONENT_MANAGER_MODULE_OVERVIEW Overview - * The @ref CAPI_COMPONENT_MANAGER_MODULE API provides information about components. There are several different sorts of queries. - * Two iterator functions step through a list of components. One is used in running components(component_manager_foreach_component_context()), and - * the other is used in available ("installed") but not necessarily running components(component_manager_foreach_component_info()). - * Each will call a callback function, passing the package name of each component found. - * A query function will respond whether the component represented by a particular application name is running. - * Other query functions return static information about a component, such as a name, a type, an icon path. - * The API provides functions to manage components also. By using them, it is possible to resume(component_manager_resume_component()) components. + * The @ref CAPI_COMPONENT_MANAGER_MODULE API provides functions to retrieve components information and to manager components. + * There are two iterator functions that retrieve components. One is component_manager_foreach_component_context(), which gets the information of running components, the other is component_manager_foreach_component_info(), which gets the information of installed components. + * The registered callback function is called as much as components exist in the list. An application can get the component's properties such as a name, a type, an icon path in the callback function. + * Resuming components or terminating background components are also supported to handle components. */ /**