Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for setMaxPoolSize (0.14 sec)

  1. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            }
        }
    
        /**
         * Set the maximum pool size
         * @param size the maximum number of connections in the pool
         */
        public void setMaxPoolSize(int size) {
            if (size <= 0) {
                throw new IllegalArgumentException("Pool size must be positive");
            }
            this.maxPoolSize = size;
            log.info("Set maximum pool size to {}", size);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
Back to top