Package de.novanic.eventservice.event.listener.unlisten

Examples of de.novanic.eventservice.event.listener.unlisten.UnlistenEventFilter


     * @param anUnlistenScope scope of the unlisten events to receive
     * @param anUnlistenEvent {@link de.novanic.eventservice.client.event.listener.unlisten.UnlistenEvent} which should
     * be transferred to other users/clients when a timeout occurs or a domain is leaved.
     */
    public void registerUnlistenEvent(String aUserId, UnlistenEventListener.Scope anUnlistenScope, UnlistenEvent anUnlistenEvent) {
        registerUser(DomainFactory.UNLISTEN_DOMAIN, aUserId, new UnlistenEventFilter(this, aUserId, anUnlistenScope));
        UserInfo theUserInfo = getUserInfo(aUserId);
        theUserInfo.setUnlistenEvent(anUnlistenEvent);
    }
View Full Code Here

TOP

Related Classes of de.novanic.eventservice.event.listener.unlisten.UnlistenEventFilter

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.