libpqxx
The C++ client library for PostgreSQL
result-pipeline.hxx
1 #include <pqxx/internal/callgate.hxx>
2 
3 namespace pqxx::internal::gate
4 {
5 class PQXX_PRIVATE result_pipeline : callgate<result const>
6 {
7  friend class pqxx::pipeline;
8 
10 
11  std::shared_ptr<std::string const> query_ptr() const
12  {
13  return home().query_ptr();
14  }
15 };
16 } // namespace pqxx::internal::gate
Processes several queries in FIFO manner, optimized for high throughput.
Definition: pipeline.hxx:50
result const & reference
A reference to the host class. Helps keep constructors easy.
Definition: callgate.hxx:60
Definition: connection.hxx:106
Base class for call gates.
Definition: callgate.hxx:54
Definition: result-pipeline.hxx:5