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