Examples of ConcurrentUserAggregation


Examples of org.jasig.portal.events.aggr.concuser.ConcurrentUserAggregation

                    ConcurrentUserAggregationKey key = new ConcurrentUserAggregationKeyImpl(interval, group);
                    final List<ConcurrentUserAggregation> aggregations = concurrentUserAggregationDao.getAggregations(begin, end, key);
                   
                    // NB:  We only care about the most recent entry (??)
                    if (aggregations.size() != 0) {
                        final ConcurrentUserAggregation aggregation = aggregations.get(0);
                        int groupTotal = aggregation.getConcurrentUsers();
                        absTotal += aggregation.getConcurrentUsers();
                        if (group.getGroupName().equalsIgnoreCase(masterGroup))
                        {
                            masterTotal = groupTotal;
                        } else {
                            subTotal += groupTotal;
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.