首页 > 数据库技术 > 详细

姚博文 postgresql listen/notify push message

时间:2015-01-13 19:55:54      阅读:377      评论:0      收藏:0      [点我收藏+]

使用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;
}
}
}
}

姚博文 postgresql listen/notify push message

原文:http://blog.csdn.net/tianyawudie/article/details/42679617

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!