Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setJobStatus_InScope (0.65 sec)

  1. src/main/java/org/codelibs/fess/app/service/JobLogService.java

         * @param jobStatusList the list of job statuses to match for deletion
         */
        public void deleteByJobStatus(final List<String> jobStatusList) {
            jobLogBhv.queryDelete(cb -> {
                cb.query().setJobStatus_InScope(jobStatusList);
            });
        }
    
        /**
         * Updates the status of expired jobs that haven't finished.
         * Jobs that have been running longer than the expired job interval
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsJobLogCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setJobStatus_InScope(Collection<String> jobStatusList) {
            setJobStatus_Terms(jobStatusList, null);
        }
    
        public void setJobStatus_InScope(Collection<String> jobStatusList, ConditionOptionCall<TermsQueryBuilder> opLambda) {
            setJobStatus_Terms(jobStatusList, opLambda);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 71.3K bytes
    - Viewed (0)
Back to top