Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for scrollTimeout (0.08 seconds)

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

         * @return The scroll timeout.
         */
        public String getScrollTimeout() {
            return scrollTimeout;
        }
    
        /**
         * Sets the scroll timeout.
         * @param timeout The scroll timeout.
         */
        public void setScrollTimeout(final String timeout) {
            this.scrollTimeout = 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 scroll timeout.
         * @param timeout The scroll timeout.
         * @return This builder instance.
         */
        public SuggestSettingsBuilder scrollTimeout(final String timeout) {
            timeoutSettings.setScrollTimeout(timeout);
            return this;
        }
    
        /**
         * Sets the search timeout.
         * @param timeout The search timeout.
    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