姚博文 postgresql listen/notify push message

来源:互联网 发布:jquery 1.4min.js下载 编辑:程序博客网 时间:2024/06/05 11:50

使用postgresql向客端推送消息

#listen message_channel;

notify message_channel,'hello todd';


jdbc:


Statement stmt = conn.createStatement();
stmt.execute("LISTEN message_channel");
stmt.close();

notifications = conn.getNotifications();
if (notifications != null && notifications.length > 0) {
for( final Session session: sessions ) {
for (int i=0; i<notifications.length; i++) {
// System.out.println("Got notification: " + notifications[i].getName());
// System.out.println("Got notification: " + notifications[i].getParameter());
// System.out.println("Got notification: " + notifications[i].getPID());
try {
session.getBasicRemote().sendObject(notifications[i].getParameter());
logger.debug("发送了消息(" + session.getId() + "):" + notifications[i].getParameter());
} catch (Exception e) {
logger.error("session(" + ((session != null)?session.getId():"") + ")发送失败:" + e.getMessage());
continue;
}
}
}
}

0 0
原创粉丝点击