export _AppControlImpl::FindAndStart()
[platform/framework/native/appfw.git] / src / app / inc / FApp_IAppManagerServiceEventListener.h
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Apache License, Version 2.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 /**
18  * @file        FApp_IAppManagerServiceEventListener.h
19  * @brief       This is the header file for the _IAppManagerServiceEventListener class.
20  */
21
22 #ifndef _FAPP_INTERNAL_IAPP_MANAGER_SERVICE_EVENT_LISTENER_H_
23 #define _FAPP_INTERNAL_IAPP_MANAGER_SERVICE_EVENT_LISTENER_H_
24
25 #include <FBaseResult.h>
26 #include <FBaseRtIEventListener.h>
27
28 namespace Tizen { namespace App
29 {
30
31 /**
32  * @interface _IAppManagerServiceEventListener
33  * @brief       This interface defines the listener for the event from _AppManangerService
34  * @since 2.1
35  *
36  * Purpose of this interface is letting _AppManagerService and _AppManagerProxy implements this
37  * interface so they can notify to their paired client _AppManagerStub and _AppManagerImpl.
38  * Application should not implement this interface.
39  */
40 class _IAppManagerServiceEventListener
41         : virtual public Tizen::Base::Runtime::IEventListener
42 {
43 public:
44         virtual result OnTerminateApplicationRequested(int clientId) = 0;
45         virtual result OnAppLifecycleEventReceived(int clientId, const AppId& appId, _AppLifecycleEventType appLifecycleEventType) = 0;
46
47 }; // _IAppManagerServiceEventListener
48
49 } } // Tizen::App
50
51 #endif // _FAPP_INTERNAL_IAPP_MANAGER_SERVICE_EVENT_LISTENER_H_