Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getCoordinatorOperationRetryAsInteger (0.17 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

                @Override
                public Integer getCoordinatorOperationTtlAsInteger() {
                    return 7200000;
                }
    
                @Override
                public Integer getCoordinatorOperationRetryAsInteger() {
                    return 3;
                }
    
                @Override
                public Integer getCoordinatorEventTtlAsInteger() {
                    return 600000;
                }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

         * @return {@code true} if the lock was acquired.
         */
        public boolean tryStartOperation(final String operationName, final String data) {
            final int maxRetry = ComponentUtil.getFessConfig().getCoordinatorOperationRetryAsInteger();
            return tryStartOperation(operationName, data, maxRetry);
        }
    
        /**
         * Internal method to acquire a distributed lock with retry control.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
Back to Top