Package net.solosky.maplefetion.event.notify

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


    };
    this.context.getFetionExecutor().submitTask(r);
   
    //通知监听器收到了一个邀请
    ChatDialogProxy cd = this.context.getChatDialogProxyFactoy().create(buddy);
    this.tryFireNotifyEvent(new InviteReceivedEvent(cd));
    }
View Full Code Here


        SystemMessageEvent e8 = (SystemMessageEvent) event;
        this.systemMessageRecived(e8.getSystemMessage());
        break;
       
      case INVITE_RECEIVED:
        InviteReceivedEvent e9 = (InviteReceivedEvent) event;
        this.inviteReceived(e9.getChatDialogProxy());
        break;
       
      case IMAGE_VERIFY:
        ImageVerifyEvent e10 = (ImageVerifyEvent) event;
        this.imageVerify(e10.getVerifyImage(), e10.getVerifyReason(), e10.getVerifyTips(), e10);
View Full Code Here

TOP

Related Classes of net.solosky.maplefetion.event.notify.InviteReceivedEvent

Copyright © 2018 www.massapicom. 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.