Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getLogNotificationBufferSizeAsInteger (0.12 seconds)

  1. src/main/java/org/codelibs/fess/helper/LogNotificationHelper.java

         */
        public void offer(final LogNotificationEvent event) {
            int maxBufferSize;
            try {
                maxBufferSize = ComponentUtil.getFessConfig().getLogNotificationBufferSizeAsInteger();
            } catch (final Exception e) {
                maxBufferSize = 1000;
            }
            queue.offer(event);
            if (size.incrementAndGet() > maxBufferSize) {
                if (queue.poll() != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.3K bytes
    - Click Count (0)
Back to Top