1

本机接口 postgresql 提供以下命令:NOTIFY channel [ , payload ],其中有效负载是变量字符串。我使用库pqxx与数据库交互。它提供 notify_listener接口。作为通知执行的回调只有一个参数 - id。这是我的代码:

class notif : public pqxx::notify_listener {

public:
        notif(pqxx::connection_base &conn, const std::string &table, std::shared_ptr<notify_processor_t> pr) : 
            pqxx::notify_listener(conn, table), _table(table), _pr(pr) {}

        notif(pqxx::connection_base &conn, const std::string &table) :
            pqxx::notify_listener(conn, table), _table(table) {}

        virtual void operator()(int id) 
        { 
            std::cout << "notification " << _table << std::endl; 
            if (_pr.get())
                _pr->operator()();
        }
private:
        std::shared_ptr<notify_processor_t> _pr;
        std::string _table;
};

如何使用提供的界面获取payload内容?pqxx

4

1 回答 1

2

在 libpqxx 4.0.1 版本中发现以下内容:

// Obsolete notification receiver.
/** @deprecated Use notification_receiver instead.
*/
class PQXX_LIBEXPORT PQXX_NOVTABLE notify_listener

你应该使用 notification receiver类而不是notify_listener

于 2015-12-24T13:50:26.633 回答