Examples of InviteReceivedEvent


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

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

        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
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.