wrt-plugins-tizen_0.4.23
[framework/web/wrt-plugins-tizen.git] / src / MessagePort / ILocalMessagePort.cpp
1 //
2 // Tizen Web Device API
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        ILocalMessagePort.cpp
20  * @author      Kisub Song (kisubs.song@samsung.com)
21  * @version     0.1
22  * @brief
23  */
24
25 #include "ILocalMessagePort.h"
26 #include <Logger.h>
27
28 namespace DeviceAPI {
29 namespace MessagePort {
30
31 using namespace WrtDeviceApis::Commons;
32
33 ILocalMessagePort::ILocalMessagePort() :
34                 EventRequestReceiver< EventLocalMessagePortAddMessagePortListener >(ThreadEnum::NULL_THREAD),
35                 EventRequestReceiver< EventLocalMessagePortRemoveMessagePortListener >(ThreadEnum::NULL_THREAD)
36 {
37 }
38
39 ILocalMessagePort::~ILocalMessagePort()
40 {
41 }
42
43 void ILocalMessagePort::addMessagePortListener(const EventLocalMessagePortAddMessagePortListenerPtr &event)
44 {
45         //post event to PLATFORM implementation
46         EventRequestReceiver< EventLocalMessagePortAddMessagePortListener >::PostRequest(event);
47 }
48
49 void ILocalMessagePort::removeMessagePortListener(const EventLocalMessagePortRemoveMessagePortListenerPtr &event)
50 {
51         //post event to PLATFORM implementation
52         EventRequestReceiver< EventLocalMessagePortRemoveMessagePortListener >::PostRequest(event);
53 }
54
55 } // MessagePort
56 } // DeviceAPI