sync with tizen_2.0
[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  * since      3.0
41  */
42 class _OSP_EXPORT_ _IIpcClientEventListener
43         : Tizen::Base::Runtime::IEventListener
44 {
45 public:
46
47         /**
48          * This is the destructor for this class.
49          *
50          * @since 2.1
51          */
52         virtual ~_IIpcClientEventListener(void);
53
54         /**
55          * Called when an IPC response message received.
56          *
57          * @since 2.1
58          * @param[in] client       The IPC client
59          * @param[in] message      The response message
60          */
61         virtual void OnIpcResponseReceived(_IpcClient& client, const IPC::Message& message) = 0;
62 }; // _IIpcClientEventListener
63
64
65 } } // Tizen::Io
66
67 #endif //_FIO_INTERNAL_IIPC_CLIENT_EVENT_LISTENER_H_