Examples of PresenceChannelEventListener


Examples of com.pusher.client.channel.PresenceChannelEventListener

            idToUserMap.put(id, user);
        }

        ChannelEventListener listener = this.getEventListener();
        if (listener != null) {
            PresenceChannelEventListener presenceListener = (PresenceChannelEventListener)listener;
            presenceListener.onUsersInformationReceived(getName(), getUsers());
        }
    }
View Full Code Here

Examples of com.pusher.client.channel.PresenceChannelEventListener

        final User user = new User(id, userData);
        idToUserMap.put(id, user);

        ChannelEventListener listener = this.getEventListener();
        if (listener != null) {
            PresenceChannelEventListener presenceListener = (PresenceChannelEventListener)listener;
            presenceListener.userSubscribed(getName(), user);
        }
    }
View Full Code Here

Examples of com.pusher.client.channel.PresenceChannelEventListener

        final User user = idToUserMap.remove(id);

        ChannelEventListener listener = this.getEventListener();
        if( listener != null ) {
            PresenceChannelEventListener presenceListener = (PresenceChannelEventListener)listener;
            presenceListener.userUnsubscribed(getName(), user);
        }
    }
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.