Uses of Interface
org.apache.cassandra.io.compress.ICompressor
Packages that use ICompressor
Package
Description
Hints subsystem consists of several components.
-
Uses of ICompressor in org.apache.cassandra.db.commitlog
Methods in org.apache.cassandra.db.commitlog that return ICompressor -
Uses of ICompressor in org.apache.cassandra.hints
Methods in org.apache.cassandra.hints with parameters of type ICompressorModifier and TypeMethodDescriptionstatic ChecksummedDataInputCompressedChecksummedDataInput.upgradeInput(ChecksummedDataInput input, ICompressor compressor) static ChecksummedDataInputEncryptedChecksummedDataInput.upgradeInput(ChecksummedDataInput input, Cipher cipher, ICompressor compressor) Constructors in org.apache.cassandra.hints with parameters of type ICompressorModifierConstructorDescriptionCompressedChecksummedDataInput(ChannelProxy channel, ICompressor compressor, long filePosition) protectedEncryptedChecksummedDataInput(ChannelProxy channel, Cipher cipher, ICompressor compressor, long filePosition) -
Uses of ICompressor in org.apache.cassandra.io.compress
Classes in org.apache.cassandra.io.compress that implement ICompressorModifier and TypeClassDescriptionclassclassclassA Compressor which doesn't actually compress any data.classclassZSTD CompressorMethods in org.apache.cassandra.io.compress that return ICompressor -
Uses of ICompressor in org.apache.cassandra.schema
Methods in org.apache.cassandra.schema that return ICompressorModifier and TypeMethodDescriptionstatic ICompressorCompressionParams.createCompressor(ParameterizedClass compression) CompressionParams.getSstableCompressor()Returns the SSTable compressor.Methods in org.apache.cassandra.schema that return types with arguments of type ICompressor -
Uses of ICompressor in org.apache.cassandra.security
Methods in org.apache.cassandra.security that return ICompressorMethods in org.apache.cassandra.security with parameters of type ICompressorModifier and TypeMethodDescriptionstatic ByteBufferEncryptionUtils.compress(ByteBuffer inputBuffer, ByteBuffer outputBuffer, boolean allowBufferResize, ICompressor compressor) Compress the raw data, as well as manage sizing of theoutputBuffer; if the buffer is not big enough, deallocate current, and allocate a large enough buffer.static intEncryptionUtils.uncompress(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset, ICompressor compressor) static ByteBufferEncryptionUtils.uncompress(ByteBuffer inputBuffer, ByteBuffer outputBuffer, boolean allowBufferResize, ICompressor compressor) Uncompress the input data, as well as manage sizing of theoutputBuffer; if the buffer is not big enough, deallocate current, and allocate a large enough buffer.