Package org.jasig.portal.events.aggr

Examples of org.jasig.portal.events.aggr.UniqueStrings


            this.getLogger().warn("{} is already closed, the event session {} will be ignored on: {}", this.getClass().getSimpleName(), eventSessionId, this);
            return;
        }
       
        if (this.uniqueStrings == null) {
            this.uniqueStrings = new UniqueStrings();
        }
       
        if (this.uniqueStrings.add(eventSessionId)) {
            this.concurrentUsers++;
        }
View Full Code Here


            this.getLogger().warn("{} is already closed, the user name {} will be ignored on: {}", this.getClass().getSimpleName(), userName, this);
            return;
        }
       
        if (this.uniqueStrings == null) {
            this.uniqueStrings = new UniqueStrings();
        }
       
        if (this.uniqueStrings.add(userName)) {
            this.uniqueLoginCount++;
        }
View Full Code Here

TOP

Related Classes of org.jasig.portal.events.aggr.UniqueStrings

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.