object Deflate extends Deflate
- Annotations
- @InternalApi() @deprecated
- Deprecated
(Since version 10.2.0) Actual implementation of Deflate is internal API, use Coders.Deflate instead
- Source
- Deflate.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Deflate
- Deflate
- StreamDecoder
- Coder
- Decoder
- Encoder
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def decode(input: ByteString)(implicit mat: Materializer): Future[ByteString]
- Definition Classes
- Decoder
- def decodeData[T](t: T)(implicit mapper: DataMapper[T]): T
- Definition Classes
- Decoder
- def decodeMessage(message: HttpMessage): Self
- Definition Classes
- Decoder
- def decoderFlow: Flow[ByteString, ByteString, NotUsed]
- Definition Classes
- StreamDecoder → Decoder
- def encodeAsync(input: ByteString)(implicit mat: Materializer): Future[ByteString]
- Definition Classes
- Encoder
- def encodeData[T](t: T)(implicit mapper: DataMapper[T]): T
- Definition Classes
- Encoder
- def encodeMessage(message: HttpMessage): Self
- Definition Classes
- Encoder
- def encoderFlow: Flow[ByteString, ByteString, NotUsed]
- Definition Classes
- Encoder
- val encoding: HttpEncoding
- def maxBytesPerChunk: Int
- Definition Classes
- StreamDecoder → Decoder
- val messageFilter: (HttpMessage) => Boolean
- def newCompressor: DeflateCompressor
- def newDecompressorStage(maxBytesPerChunk: Int): () => DeflateDecompressor
- Definition Classes
- Deflate → StreamDecoder
- def withMaxBytesPerChunk(newMaxBytesPerChunk: Int): Decoder
- Definition Classes
- StreamDecoder → Decoder
Deprecated Value Members
- def encode(input: ByteString): ByteString
- Definition Classes
- Encoder
- Annotations
- @InternalApi() @deprecated
- Deprecated
(Since version 10.2.0) synchronous compression with
encode
is not supported in the future any more, useencodeAsync
instead
- def newEncodeTransformer(): GraphStage[FlowShape[ByteString, ByteString]]
- Definition Classes
- Encoder
- Annotations
- @InternalApi() @deprecated
- Deprecated
(Since version 10.2.0) newEncodeTransformer is internal API
- def withLevel(level: Int): Deflate
- Definition Classes
- Deflate
- Annotations
- @deprecated
- Deprecated
(Since version 10.2.0) Use Coders.Deflate(compressionLevel = ...) instead