Searched refs:expiredSessionIds (Results 1 – 1 of 1) sorted by relevance
808 List<String> expiredSessionIds = new ArrayList<String>(); in scavenge() local830 expiredSessionIds.add(sessionId); in scavenge()845 ((JDBCSessionManager)manager).expire(expiredSessionIds); in scavenge()908 List<String> expiredSessionIds = new ArrayList<String>(); in cleanExpiredSessions() local924 expiredSessionIds.add(sessionId); in cleanExpiredSessions()931 if (!expiredSessionIds.isEmpty()) in cleanExpiredSessions()934 …teCleanExpiredSessionsSql("delete from "+_sessionTable+" where sessionId in ", expiredSessionIds)); in cleanExpiredSessions()936 …(createCleanExpiredSessionsSql("delete from "+_sessionIdTable+" where id in ", expiredSessionIds)); in cleanExpiredSessions()942 … _sessionIds.removeAll(expiredSessionIds); //in case they were in our local cache of session ids in cleanExpiredSessions()997 private String createCleanExpiredSessionsSql (String sql,Collection<String> expiredSessionIds) in createCleanExpiredSessionsSql() argument[all …]