Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getNetbiosRetryTimeout (0.18 sec)

  1. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                }
                n = config.getNetbiosRetryCount();
            }
            else {
                n = 1;
            }
    
            do {
                try {
                    send(request, response, config.getNetbiosRetryTimeout());
                }
                catch ( InterruptedIOException ioe ) {
                    // second query thread to finish gets interrupted so this is expected
                    if ( log.isTraceEnabled() ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.getNetbiosSndBufSize();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getNetbiosRetryTimeout()
         */
        @Override
        public int getNetbiosRetryTimeout () {
            return this.delegate.getNetbiosRetryTimeout();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getNetbiosRetryCount()
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

            return this.netbiosRevcBufferSize;
        }
    
    
        @Override
        public int getNetbiosRetryCount () {
            return this.netbiosRetryCount;
        }
    
    
        @Override
        public int getNetbiosRetryTimeout () {
            return this.netbiosRetryTimeout;
        }
    
    
        @Override
        public int getNetbiosSndBufSize () {
            return this.netbiosSendBufferSize;
        }
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * Property <tt>jcifs.netbios.retryTimeout</tt> (int, default 3000)
         * 
         * @return timeout of retry requests, in milliseconds
         */
        int getNetbiosRetryTimeout ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.retryCount</tt> (int, default 2)
         * 
         * @return maximum number of retries for netbios requests
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top