Enum Coder

java.lang.Object
java.lang.Enum<Coder>
akka.http.javadsl.coding.Coder
All Implemented Interfaces:
Serializable, Comparable<Coder>

public enum Coder extends Enum<Coder>
A coder is an implementation of the predefined encoders/decoders defined for HTTP.
  • Enum Constant Details

    • NoCoding

      public static final Coder NoCoding
    • Deflate

      public static final Coder Deflate
    • Gzip

      public static final Coder Gzip
    • DeflateLevel1

      public static final Coder DeflateLevel1
    • DeflateLevel9

      public static final Coder DeflateLevel9
    • GzipLevel1

      public static final Coder GzipLevel1
    • GzipLevel9

      public static final Coder GzipLevel9
  • Method Details

    • values

      public static Coder[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Coder valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • encodeMessage

      public HttpResponse encodeMessage(HttpResponse message)
    • encodeMessage

      public HttpRequest encodeMessage(HttpRequest message)
    • encode

      @Deprecated public akka.util.ByteString encode(akka.util.ByteString input)
      Deprecated.
      Synchronous encoding is deprecated since 10.2.0
    • decodeMessage

      public HttpResponse decodeMessage(HttpResponse message)
    • decodeMessage

      public HttpRequest decodeMessage(HttpRequest message)
    • decode

      public CompletionStage<akka.util.ByteString> decode(akka.util.ByteString input, akka.stream.Materializer mat)
    • _underlyingScalaCoder

      public Coder _underlyingScalaCoder()