- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for sendCommand (0.21 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java
verifyToken(this::asDetailsHtml); final String id = form.id; crawlingInfoService.getCrawlingInfo(id).ifPresent(entity -> { try { processHelper.sendCommand(entity.getSessionId(), Constants.CRAWLER_PROCESS_COMMAND_THREAD_DUMP); saveInfo(messages -> messages.addSuccessPrintThreadDump(GLOBAL)); } catch (final Exception e) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
* @throws JobNotFoundException if no process is found for the given session ID * @throws JobProcessingException if there's an error sending the command */ public void sendCommand(final String sessionId, final String command) { final Process process; synchronized (this) { final JobProcess jobProcess = runningProcessMap.get(sessionId); if (jobProcess == null) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 06:54:47 UTC 2025 - 10.9K bytes - Viewed (0)