Class ZstdCompressor


  • public class ZstdCompressor
    extends Compressor
    Zstd compression
    • Constructor Summary

      Constructors 
      Constructor Description
      ZstdCompressor()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void close()
      subclasses must implement this method to cleanup after compression this is public so the process of compression and closing can be dealt with separately.
      void compress()
      subclasses must implement this method to do their compression this is public so the process of compression and closing can be dealt with separately.
      void setLevel​(java.lang.Integer level)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ZstdCompressor

        public ZstdCompressor()
    • Method Detail

      • setLevel

        public void setLevel​(java.lang.Integer level)
      • compress

        public void compress()
                      throws ArchiverException
        Description copied from class: Compressor
        subclasses must implement this method to do their compression this is public so the process of compression and closing can be dealt with separately.
        Specified by:
        compress in class Compressor
        Throws:
        ArchiverException
      • close

        public void close()
        Description copied from class: Compressor
        subclasses must implement this method to cleanup after compression this is public so the process of compression and closing can be dealt with separately.
        Specified by:
        close in class Compressor