Examples of UniqueStrings


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

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

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