Revert commit ID eb415081365ae7736bf6d0436d008d374c34a884
[platform/framework/native/appfw.git] / src / io / inc / FIo_IIpcClientEventListener.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file        FIo_IIpcClientEventListener.h
20  * @brief       This is the header file for the _IIpcClientEventListener class.
21  *
22  * This file contains the declarations of  _IIpcClientEventListener.
23  */
24
25 #ifndef _FIO_INTERNAL_IIPC_CLIENT_EVENT_LISTENER_H_
26 #define _FIO_INTERNAL_IIPC_CLIENT_EVENT_LISTENER_H_
27
28 #include <FBaseRtIEventListener.h>
29
30 namespace IPC { class Message; }
31
32 namespace Tizen { namespace Io
33 {
34
35 class _IpcClient;
36
37 /**
38  * @interface _IIpcClientEventListener
39  * @brief     This interface provides the listener method for the response from IPC server.
40  */
41 class _OSP_EXPORT_ _IIpcClientEventListener
42         : Tizen::Base::Runtime::IEventListener
43 {
44 public:
45
46         /**
47          * This is the destructor for this class.
48          *
49          */
50         virtual ~_IIpcClientEventListener(void);
51
52         /**
53          * Called when an IPC response message received.
54          *
55          * @param[in] client       The IPC client
56          * @param[in] message      The response message
57          */
58         virtual void OnIpcResponseReceived(_IpcClient& client, const IPC::Message& message) = 0;
59
60         /**
61          * Called when an IPC server disconnected.
62          *
63          * @param[in] client            The IPC client
64          */
65         virtual void OnIpcServerDisconnected(_IpcClient& client) {}
66 }; // _IIpcClientEventListener
67
68
69 } } // Tizen::Io
70
71 #endif //_FIO_INTERNAL_IIPC_CLIENT_EVENT_LISTENER_H_