Package org.springframework.amqp.support.postprocessor
Package for Spring AMQP message post processors.
-
Class Summary Class Description AbstractCompressingPostProcessor Base class for post processors that compress the message body.AbstractDecompressingPostProcessor Base class for post processors that decompress the message body if theMessageProperties.SPRING_AUTO_DECOMPRESS
header is true or to optionally always decompress if the content encoding matchesAbstractDecompressingPostProcessor.getEncoding()
, or starts withAbstractDecompressingPostProcessor.getEncoding()
+ ":", in which case the encoding following the colon becomes the final content encoding of the decompressed message.AbstractDeflaterPostProcessor Base class for post processors based onDeflater
.DeflaterPostProcessor A post processor that uses aDeflaterOutputStream
to compress the message body.DelegatingDecompressingPostProcessor AMessagePostProcessor
that delegates to one of itsMessagePostProcessor
s depending on the content encoding.GUnzipPostProcessor A post processor that uses aGZIPInputStream
to decompress the message body.GZipPostProcessor A post processor that uses aGZIPOutputStream
to compress the message body.InflaterPostProcessor A post processor that uses aInflaterInputStream
to decompress the message body.MessagePostProcessorUtils Utilities for message post processors.UnzipPostProcessor A post processor that uses aZipInputStream
to decompress the message body.ZipPostProcessor A post processor that uses aZipOutputStream
to compress the message body.