Ejemplo n.º 1
0
        /**
         * {@inheritDoc}
         *
         * 通知事件
         */

        public void fireNotify(QQNotifyEvent evt)
        {
            if (notifyListener != null)
            {
                try {
                    notifyListener.onNotifyEvent(evt);
                } catch (Exception e) {
                }
            }
            // 重新登录成功,重新poll
            if (evt.getType() == QQNotifyEvent.Type.RELOGIN_SUCCESS)
            {
                beginPollMsg();
            }
        }