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. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def decode(input: ByteString)(implicit mat: Materializer): Future[ByteString]
    Definition Classes
    Decoder
  7. def decodeData[T](t: T)(implicit mapper: DataMapper[T]): T
    Definition Classes
    NoCodingDecoder
  8. def decodeMessage(message: HttpMessage): Self
    Definition Classes
    Decoder
  9. def decoderFlow: Flow[ByteString, ByteString, NotUsed]
    Definition Classes
    StreamDecoderDecoder
  10. def encodeAsync(input: ByteString)(implicit mat: Materializer): Future[ByteString]
    Definition Classes
    Encoder
  11. def encodeData[T](t: T)(implicit mapper: DataMapper[T]): T
    Definition Classes
    NoCodingEncoder
  12. def encodeMessage(message: HttpMessage): Self
    Definition Classes
    Encoder
  13. def encoderFlow: Flow[ByteString, ByteString, NotUsed]
    Definition Classes
    Encoder
  14. val encoding: HttpEncoding
    Definition Classes
    NoCodingDecoderEncoder
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def maxBytesPerChunk: Int
    Definition Classes
    StreamDecoderDecoder
  22. val messageFilter: (HttpMessage) => Boolean
    Definition Classes
    NoCodingEncoder
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. def newCompressor: NoCodingCompressor
    Definition Classes
    NoCodingEncoder
  25. def newDecompressorStage(maxBytesPerChunk: Int): () => GraphStage[FlowShape[ByteString, ByteString]]
    Definition Classes
    NoCodingStreamDecoder
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. 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

Inherited from StreamDecoder

Inherited from Coder

Inherited from Decoder

Inherited from Encoder

Inherited from AnyRef

Inherited from Any

Ungrouped