mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
16 lines
258 B
C++
16 lines
258 B
C++
#pragma once
|
|
#include "../Interface/Thread.h"
|
|
#include "../Interface/Types.h"
|
|
|
|
class WalCheckpointThread : public IThread
|
|
{
|
|
public:
|
|
WalCheckpointThread();
|
|
|
|
void checkpoint();
|
|
|
|
void operator()();
|
|
|
|
private:
|
|
int64 last_checkpoint_wal_size;
|
|
}; |