Home
last modified time | relevance | path

Searched refs:expiredSessionIds (Results 1 – 1 of 1) sorted by relevance

/external/jetty/src/java/org/eclipse/jetty/server/session/
DJDBCSessionIdManager.java808 List<String> expiredSessionIds = new ArrayList<String>(); in scavenge() local
830 expiredSessionIds.add(sessionId); in scavenge()
845 ((JDBCSessionManager)manager).expire(expiredSessionIds); in scavenge()
908 List<String> expiredSessionIds = new ArrayList<String>(); in cleanExpiredSessions() local
924 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 …]