Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getCoordinatorOperationRetryAsInteger (0.27 seconds)

  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)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         * @throws NumberFormatException When the property is not integer.
         */
        Integer getCoordinatorOperationRetryAsInteger();
    
        /**
         * Get the value for the key 'coordinator.event.ttl'. <br>
         * The value is, e.g. 600000 <br>
         * comment: Time-to-live (ms) for event notification documents.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top