You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-15 12:09:09 +03:00
Checkpointing additions to Cache
This commit is contained in:
24
src/Synchronizer.h
Normal file
24
src/Synchronizer.h
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
#ifndef SYNCHRONIZER_H_
|
||||
#define SYNCHRONIZER_H_
|
||||
|
||||
#include <string>
|
||||
#include <boost/utility.hpp>
|
||||
|
||||
namespace storagemanager
|
||||
{
|
||||
|
||||
class Synchronizer : public boost::noncopyable
|
||||
{
|
||||
public:
|
||||
static Synchronizer *get();
|
||||
virtual ~Synchronizer();
|
||||
|
||||
void flushObject(const std::string &key);
|
||||
|
||||
private:
|
||||
Synchronizer();
|
||||
};
|
||||
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user