Package de.fu_berlin.inf.dpp.net.internal

Examples of de.fu_berlin.inf.dpp.net.internal.DefaultInvitationInfo$InvitationCompleteExtensionProvider


     */
    protected void completeInvitation() {
        log.debug("Inv" + Utils.prefix(peer) + ": Completing invitation...");
        UserListRequestExtensionProvider extProv = new UserListRequestExtensionProvider();
        transmitter.sendMessageToUser(peer,
            extProv.create(new DefaultInvitationInfo(sessionID, invitationID)));

        /*
         * TODO: Wait until all of the activities in the queue (which arrived
         * during the invitation) are processed and notify the host only after
         * that.
 
View Full Code Here


        final XStreamExtensionProvider<? extends DefaultInvitationInfo> extProv,
        final String invitationID) {

        return new PacketFilter() {
            public boolean accept(Packet arg0) {
                DefaultInvitationInfo invInfo = extProv.getPayload(arg0);

                return ObjectUtils.equals(invInfo.invitationID, invitationID);
            }
        };
    }
View Full Code Here

TOP

Related Classes of de.fu_berlin.inf.dpp.net.internal.DefaultInvitationInfo$InvitationCompleteExtensionProvider

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.