11 #ifndef PQXX_H_TRANSACTOR
12 #define PQXX_H_TRANSACTOR
14 #if !defined(PQXX_HEADER_PRE)
15 # error "Include libpqxx headers as <pqxx/header>, not <pqxx/header.hxx>."
19 #include <type_traits>
21 #include "pqxx/connection.hxx"
22 #include "pqxx/transaction.hxx"
99 template<
typename TRANSACTION_CALLBACK>
100 inline auto perform(TRANSACTION_CALLBACK &&callback,
int attempts = 3)
101 -> std::invoke_result_t<TRANSACTION_CALLBACK>
104 throw std::invalid_argument{
105 "Zero or negative number of attempts passed to pqxx::perform()."};
107 for (; attempts > 0; --attempts)
111 return std::invoke(callback);
auto perform(TRANSACTION_CALLBACK &&callback, int attempts=3) -> std::invoke_result_t< TRANSACTION_CALLBACK >
Simple way to execute a transaction with automatic retry.
Definition: transactor.hxx:100
Exception class for lost or failed backend connection.
Definition: except.hxx:80
Exception class for micommunication with the server.
Definition: except.hxx:102
The backend saw itself forced to roll back the ongoing transaction.
Definition: except.hxx:177
The home of all libpqxx classes, functions, templates, etc.
Definition: array.cxx:26
We can't tell whether our last statement succeeded.
Definition: except.hxx:213
Internal error in libpqxx library.
Definition: except.hxx:241
"Help, I don't know whether transaction was committed successfully!"
Definition: except.hxx:164