Packages

object NoCoding extends Coder with StreamDecoder

An encoder and decoder for the HTTP 'identity' encoding.

Annotations
@InternalApi() @deprecated
Deprecated

(Since version 10.2.0) Actual implementation of NoCoding is internal API, use Coders.NoCoding instead

Source
NoCoding.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NoCoding
  2. StreamDecoder
  3. Coder
  4. Decoder
  5. Encoder
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def decode(input: ByteString)(implicit mat: Materializer): Future[ByteString]
    Definition Classes
    Decoder
  2. def decodeData[T](t: T)(implicit mapper: DataMapper[T]): T
    Definition Classes
    NoCodingDecoder
  3. def decodeMessage(message: HttpMessage): Self
    Definition Classes
    Decoder
  4. def decoderFlow: Flow[ByteString, ByteString, NotUsed]
    Definition Classes
    StreamDecoderDecoder
  5. def encodeAsync(input: ByteString)(implicit mat: Materializer): Future[ByteString]
    Definition Classes
    Encoder
  6. def encodeData[T](t: T)(implicit mapper: DataMapper[T]): T
    Definition Classes
    NoCodingEncoder
  7. def encodeMessage(message: HttpMessage): Self
    Definition Classes
    Encoder
  8. def encoderFlow: Flow[ByteString, ByteString, NotUsed]
    Definition Classes
    Encoder
  9. val encoding: HttpEncoding
    Definition Classes
    NoCodingDecoderEncoder
  10. def maxBytesPerChunk: Int
    Definition Classes
    StreamDecoderDecoder
  11. val messageFilter: (HttpMessage) => Boolean
    Definition Classes
    NoCodingEncoder
  12. def newCompressor: NoCodingCompressor
    Definition Classes
    NoCodingEncoder
  13. def newDecompressorStage(maxBytesPerChunk: Int): () => GraphStage[FlowShape[ByteString, ByteString]]
    Definition Classes
    NoCodingStreamDecoder
  14. def withMaxBytesPerChunk(newMaxBytesPerChunk: Int): Decoder
    Definition Classes
    StreamDecoderDecoder

Deprecated Value Members

  1. 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, use encodeAsync instead

  2. def newEncodeTransformer(): GraphStage[FlowShape[ByteString, ByteString]]
    Definition Classes
    Encoder
    Annotations
    @InternalApi() @deprecated
    Deprecated

    (Since version 10.2.0) newEncodeTransformer is internal API