blob: 7176a68beaab6d9f1d39d19a7e8cd35037e80b0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "access/xlogdefs.h"
/*
* Called before trying to read more data or when a segment is
* finished. Return true to stop streaming.
*/
typedef bool (*stream_stop_callback) (XLogRecPtr segendpos, uint32 timeline, bool segment_finished);
extern bool ReceiveXlogStream(PGconn *conn,
XLogRecPtr startpos,
uint32 timeline,
char *sysidentifier,
char *basedir,
stream_stop_callback stream_stop,
int standby_message_timeout,
bool rename_partial);
|