1 /***********************************************************************************************************************************
2 Archive Get Command
3 ***********************************************************************************************************************************/
4 #ifndef COMMAND_ARCHIVE_GET_GET_H
5 #define COMMAND_ARCHIVE_GET_GET_H
6 
7 /***********************************************************************************************************************************
8 Functions
9 ***********************************************************************************************************************************/
10 // Get an archive file from the repository (WAL segment, history file, etc.)
11 int cmdArchiveGet(void);
12 
13 // Async version of archive get that runs in parallel for performance
14 void cmdArchiveGetAsync(void);
15 
16 #endif
17