forked from meganz/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDelegateMGlobalListener.cpp
More file actions
78 lines (67 loc) · 2.35 KB
/
Copy pathDelegateMGlobalListener.cpp
File metadata and controls
78 lines (67 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
* @file DelegateMGlobalListener.cpp
* @brief Delegate to get information about global events.
*
* (c) 2013-2018 by Mega Limited, Auckland, New Zealand
*
* This file is part of the MEGA SDK - Client Access Engine.
*
* Applications using the MEGA API must present a valid application key
* and comply with the the rules set forth in the Terms of Service.
*
* The MEGA SDK is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* @copyright Simplified (2-clause) BSD License.
*
* You should have received a copy of the license along with this
* program.
*/
#include "DelegateMGlobalListener.h"
using namespace mega;
using namespace Platform;
DelegateMGlobalListener::DelegateMGlobalListener(MegaSDK^ megaSDK, MGlobalListenerInterface^ listener)
{
this->megaSDK = megaSDK;
this->listener = listener;
}
MGlobalListenerInterface^ DelegateMGlobalListener::getUserListener()
{
return listener;
}
void DelegateMGlobalListener::onUsersUpdate(MegaApi* api, MegaUserList *users)
{
if (listener != nullptr)
listener->onUsersUpdate(megaSDK, users ? ref new MUserList(users->copy(), true) : nullptr);
}
void DelegateMGlobalListener::onUserAlertsUpdate(MegaApi* api, MegaUserAlertList *alerts)
{
if (listener != nullptr)
listener->onUserAlertsUpdate(megaSDK, alerts ? ref new MUserAlertList(alerts->copy(), true) : nullptr);
}
void DelegateMGlobalListener::onNodesUpdate(MegaApi* api, MegaNodeList *nodes)
{
if (listener != nullptr)
listener->onNodesUpdate(megaSDK, nodes ? ref new MNodeList(nodes->copy(), true) : nullptr);
}
void DelegateMGlobalListener::onAccountUpdate(MegaApi* api)
{
if (listener != nullptr)
listener->onAccountUpdate(megaSDK);
}
void DelegateMGlobalListener::onContactRequestsUpdate(MegaApi* api, MegaContactRequestList* requests)
{
if (listener != nullptr)
listener->onContactRequestsUpdate(megaSDK, requests ? ref new MContactRequestList(requests->copy(), true) : nullptr);
}
void DelegateMGlobalListener::onReloadNeeded(MegaApi* api)
{
if (listener != nullptr)
listener->onReloadNeeded(megaSDK);
}
void DelegateMGlobalListener::onEvent(MegaApi* api, MegaEvent* ev)
{
if (listener != nullptr)
listener->onEvent(megaSDK, ev ? ref new MEvent(ev->copy(), true) : nullptr);
}