Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for clusterTimeout (0.61 seconds)

  1. src/main/java/org/codelibs/fess/suggest/settings/TimeoutSettings.java

         * @return The cluster timeout.
         */
        public String getClusterTimeout() {
            return clusterTimeout;
        }
    
        /**
         * Sets the cluster timeout.
         * @param timeout The cluster timeout.
         */
        public void setClusterTimeout(final String timeout) {
            this.clusterTimeout = timeout;
        }
    
        /**
         * Gets the scroll timeout.
         * @return The scroll timeout.
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilder.java

            return this;
        }
    
        /**
         * Sets the cluster timeout.
         * @param timeout The cluster timeout.
         * @return This builder instance.
         */
        public SuggestSettingsBuilder clusterTimeout(final String timeout) {
            timeoutSettings.setClusterTimeout(timeout);
            return this;
        }
    
        /**
         * Builds a SuggestSettings instance.
         * @param client The OpenSearch client.
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 3.9K bytes
    - Click Count (0)
Back to Top