Package akka.http.scaladsl.coding
Interface Decoder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description scala.concurrent.Future<akka.util.ByteString>decode(akka.util.ByteString input, akka.stream.Materializer mat)<T> TdecodeData(T t, DataMapper<T> mapper)akka.http.scaladsl.coding.Decoder.messagedecodeMessage(HttpMessage message)akka.stream.scaladsl.Flow<akka.util.ByteString,akka.util.ByteString,akka.NotUsed>decoderFlow()HttpEncodingencoding()intmaxBytesPerChunk()DecoderwithMaxBytesPerChunk(int maxBytesPerChunk)
-
-
-
Method Detail
-
encoding
HttpEncoding encoding()
-
decodeMessage
akka.http.scaladsl.coding.Decoder.message decodeMessage(HttpMessage message)
-
decodeData
<T> T decodeData(T t, DataMapper<T> mapper)
-
maxBytesPerChunk
int maxBytesPerChunk()
-
withMaxBytesPerChunk
Decoder withMaxBytesPerChunk(int maxBytesPerChunk)
-
decoderFlow
akka.stream.scaladsl.Flow<akka.util.ByteString,akka.util.ByteString,akka.NotUsed> decoderFlow()
-
decode
scala.concurrent.Future<akka.util.ByteString> decode(akka.util.ByteString input, akka.stream.Materializer mat)
-
-