CamsNotificationManager.h
Go to the documentation of this file.
1 // Copyright (c) 2017 Digital Barriers
4 
20 #pragma once
21 #include "EdgeVisSDK.h"
22 #include "Pimpl.h"
23 #include "ECamsNotificationState.h"
25 #include "CamsAttachment.h"
26 #include "OpResult.h"
27 
28 namespace EdgeVisDecoderSDK
29 {
30  class CamsNotificationManagerImpl;
31 
32  class CamsNotificationManager : public EdgeVisSDKPimpl<CamsNotificationManagerImpl>
33  {
34  public:
35  DB_EDGEVIS_SDK CamsNotificationManager();
36  EdgeVisSDKPimplWeakConstructor(CamsNotificationManager);
37  DB_EDGEVIS_SDK virtual ~CamsNotificationManager();
38 
50  DB_EDGEVIS_SDK OpResult GetNotifications(int64_t startId, CamsGetNotificationsResult & notifications);
51 
52 
66  DB_EDGEVIS_SDK OpResult GetNotificationsForState(int64_t startId, std::vector<ECamsNotificationState> states, CamsGetNotificationsResult & notifications);
67 
81  DB_EDGEVIS_SDK OpResult UpdateCamsNotifications(const std::vector<int64_t> &ids, const ECamsNotificationState old_state, const ECamsNotificationState new_state);
82 
98  DB_EDGEVIS_SDK OpResult BulkUpdateCamsNotifications(const int64_t &start_id, const int64_t &end_id, const ECamsNotificationState old_state, const ECamsNotificationState new_state);
99 
100 
101 
102 
103  DB_EDGEVIS_SDK OpResult GetAttachment(const std::wstring& id, CamsAttachment& attachment);
104  };
105 }
Contains the notifications retrieved in response to querying the Server for existing CAMS notificatio...
Definition: CamsGetNotificationsResult.h:32
DB_EDGEVIS_SDK OpResult GetNotificationsForState(int64_t startId, std::vector< ECamsNotificationState > states, CamsGetNotificationsResult &notifications)
Retrieve existing CAMS notifications with the state specified from the Server.
A CamsAttachment object typically contains an image associated with a CamsNotification object...
Definition: CamsAttachment.h:29
DB_EDGEVIS_SDK OpResult GetNotifications(int64_t startId, CamsGetNotificationsResult &notifications)
Retrieve existing CAMS notifications from the Server.
DB_EDGEVIS_SDK OpResult UpdateCamsNotifications(const std::vector< int64_t > &ids, const ECamsNotificationState old_state, const ECamsNotificationState new_state)
Change the state of the specified CAMS notifications.
ECamsNotificationState
CAMS notification state types.
Definition: ECamsNotificationState.h:21
DB_EDGEVIS_SDK OpResult BulkUpdateCamsNotifications(const int64_t &start_id, const int64_t &end_id, const ECamsNotificationState old_state, const ECamsNotificationState new_state)
Change the state of the CAMS notifications with IDs in the specified range.
The EdgeVis Decoder SDK namespace.
The CamsNotificationManager facilitates interactions with CAMS notifications stored at the server...
Definition: CamsNotificationManager.h:32
OpResult
Result of an operation.
Definition: OpResult.h:25