Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sendCommand (0.19 sec)

  1. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

            return runningProcessMap.keySet();
        }
    
        public void setProcessDestroyTimeout(final int processDestroyTimeout) {
            this.processDestroyTimeout = processDestroyTimeout;
        }
    
        public void sendCommand(final String sessionId, final String command) {
            final JobProcess jobProcess = runningProcessMap.get(sessionId);
            if (jobProcess == null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. 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: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top