Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMaxCompressionSize (1.46 sec)

  1. src/main/java/jcifs/smb/compression/CompressionService.java

        /**
         * Gets the maximum data size that can be compressed in a single operation.
         *
         * @return maximum size in bytes that can be compressed
         */
        int getMaxCompressionSize();
    
        /**
         * Gets a human-readable name for the compression algorithm.
         *
         * @param algorithm the algorithm constant
         * @return the algorithm name
         */
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/compression/DefaultCompressionService.java

        }
    
        @Override
        public int getMinCompressionSize() {
            return MIN_COMPRESSION_SIZE;
        }
    
        @Override
        public int getMaxCompressionSize() {
            return MAX_COMPRESSION_SIZE;
        }
    
        @Override
        public String getAlgorithmName(int algorithm) {
            switch (algorithm) {
            case COMPRESSION_NONE:
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 11.2K bytes
    - Viewed (0)
Back to top