- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for deleteOldSessions (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java
* @return The HTML response. */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse deleteall() { verifyToken(this::asListHtml); crawlingInfoService.deleteOldSessions(processHelper.getRunningSessionIdSet()); crawlingInfoPager.clear(); saveInfo(messages -> messages.addSuccessCrawlingInfoDeleteAll(GLOBAL)); return redirect(getClass()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
* * @param activeSessionId a set of session IDs to preserve during the cleanup operation */ public void deleteOldSessions(final Set<String> activeSessionId) { final List<CrawlingInfo> activeSessionList = activeSessionId.isEmpty() ? Collections.emptyList() : crawlingInfoBhv.selectList(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0)