Examples of BuddyMessageEvent


Examples of net.solosky.maplefetion.event.notify.BuddyMessageEvent

      //查找这个好友的聊天代理对话
      ChatDialogProxy chatDialogProxy = this.context.getChatDialogProxyFactoy().create(from);
     
      //通知消息监听器
      if(chatDialogProxy!=null && this.context.getNotifyEventListener()!=null) {
        this.tryFireNotifyEvent(new BuddyMessageEvent(from, chatDialogProxy, msg));
      }
     
      logger.debug("RecivedMessage:[from="+notify.getFrom()+", message="+body+"]");
    }
View Full Code Here

Examples of net.solosky.maplefetion.event.notify.BuddyMessageEvent

        BuddyApplicationEvent e1 = (BuddyApplicationEvent) event;
        this.buddyApplication(e1.getBuddy(), e1.getDesc());
        break;
       
      case BUDDY_MESSAGE:
        BuddyMessageEvent e2 = (BuddyMessageEvent) event;
        this.buddyMessageRecived(e2.getBuddy(), e2.getMessage(), e2.getDialogProxy());
        break;
       
      case BUDDY_CONFIRMED:
        BuddyConfirmedEvent e3 = (BuddyConfirmedEvent) event;
        this.buddyConfirmed(e3.getBuddy(), e3.isAgreed());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.