Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getBatchLimit (0.16 sec)

  1. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

         * @see jcifs.internal.CommonServerMessageBlockResponse#getNextResponse()
         */
        @Override
        public ServerMessageBlock getNextResponse () {
            return this.andx;
        }
    
    
        protected int getBatchLimit ( Configuration cfg, byte cmd ) {
            /*
             * the default limit is 0 batched messages before this
             * one, meaning this message cannot be batched.
             */
            return 0;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.isIgnoreCopyToException();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getBatchLimit(java.lang.String)
         */
        @Override
        public int getBatchLimit ( String cmd ) {
            return this.delegate.getBatchLimit(cmd);
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isAllowCompound(java.lang.String)
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 17.6K bytes
    - Viewed (1)
  3. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

        }
        AndXServerMessageBlock( ServerMessageBlock andx ) {
            if (andx != null) {
                this.andx = andx;
                andxCommand = andx.command;
            }
        }
    
        int getBatchLimit( byte command ) {
            /* the default limit is 0 batched messages before this
             * one, meaning this message cannot be batched.
             */
            return 0;
        }
    
        /* 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

        public byte[] getMachineId () {
            return this.machineId;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getBatchLimit(java.lang.String)
         */
        @Override
        public int getBatchLimit ( String cmd ) {
            Integer set = this.batchLimits.get(cmd);
            if ( set != null ) {
                return set;
            }
    
            set = doGetBatchLimit(cmd);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  5. src/main/java/jcifs/Configuration.java

         */
        boolean isIgnoreCopyToException ();
    
    
        /**
         * @param cmd
         * @return the batch limit for the given command
         */
        int getBatchLimit ( String cmd );
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.notify_buf_size</tt> (int, default 1024)
         * 
         * @return the size of the requested server notify buffer
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top