forked from sonic-net/sonic-swss-common
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasyncdbupdater.h
More file actions
38 lines (25 loc) · 705 Bytes
/
Copy pathasyncdbupdater.h
File metadata and controls
38 lines (25 loc) · 705 Bytes
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
#pragma once
#include <string>
#include <deque>
#include <condition_variable>
#include "dbconnector.h"
#include "table.h"
namespace swss {
class AsyncDBUpdater
{
public:
AsyncDBUpdater(DBConnector *db, const std::string &tableName);
~AsyncDBUpdater();
void update(std::shared_ptr<KeyOpFieldsValuesTuple> pkco);
size_t queueSize();
private:
void dbUpdateThread();
volatile bool m_runThread;
std::shared_ptr<std::thread> m_dbUpdateThread;
std::mutex m_dbUpdateDataQueueMutex;
std::condition_variable m_dbUpdateDataNotifyCv;
std::queue<std::shared_ptr<KeyOpFieldsValuesTuple>> m_dbUpdateDataQueue;
DBConnector *m_db;
std::string m_tableName;
};
}