1#include <pqxx/internal/callgate.hxx>
3#include "pqxx/connection.hxx"
12namespace pqxx::internal::gate
14class PQXX_PRIVATE connection_notification_receiver : callgate<connection>
16 friend class pqxx::notification_receiver;
18 connection_notification_receiver(reference x) : super(x) {}
20 void add_receiver(notification_receiver *receiver)
22 home().add_receiver(receiver);
24 void remove_receiver(notification_receiver *receiver)
noexcept
26 home().remove_receiver(receiver);
Definition notification.hxx:57
The home of all libpqxx classes, functions, templates, etc.
Definition array.cxx:27