Package akka.http.impl.engine.http2
Class Http2Protocol.ErrorCode$
- java.lang.Object
-
- akka.http.impl.engine.http2.Http2Protocol.ErrorCode$
-
- Enclosing class:
- Http2Protocol
public static class Http2Protocol.ErrorCode$ extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Http2Protocol.ErrorCode$.CANCEL$
CANCEL (0x8): Used by the endpoint to indicate that the stream is no longer needed.static class
Http2Protocol.ErrorCode$.COMPRESSION_ERROR$
COMPRESSION_ERROR (0x9): The endpoint is unable to maintain the header compression context for the connection.static class
Http2Protocol.ErrorCode$.CONNECT_ERROR$
CONNECT_ERROR (0xa): The connection established in response to a CONNECT request (Section 8.3) was reset or abnormally closed.static class
Http2Protocol.ErrorCode$.ENHANCE_YOUR_CALM$
ENHANCE_YOUR_CALM (0xb): The endpoint detected that its peer is exhibiting a behavior that might be generating excessive load.static class
Http2Protocol.ErrorCode$.FLOW_CONTROL_ERROR$
FLOW_CONTROL_ERROR (0x3): The endpoint detected that its peer violated the flow-control protocol.static class
Http2Protocol.ErrorCode$.FRAME_SIZE_ERROR$
FRAME_SIZE_ERROR (0x6): The endpoint received a frame with an invalid size.static class
Http2Protocol.ErrorCode$.HTTP_1_1_REQUIRED$
HTTP_1_1_REQUIRED (0xd): The endpoint requires that HTTP/1.1 be used instead of HTTP/2.static class
Http2Protocol.ErrorCode$.INADEQUATE_SECURITY$
INADEQUATE_SECURITY (0xc): The underlying transport has properties that do not meet minimum security requirements (see Section 9.2).static class
Http2Protocol.ErrorCode$.INTERNAL_ERROR$
INTERNAL_ERROR (0x2): The endpoint encountered an unexpected internal error.static class
Http2Protocol.ErrorCode$.NO_ERROR$
NO_ERROR (0x0): The associated condition is not a result of an error.static class
Http2Protocol.ErrorCode$.PROTOCOL_ERROR$
PROTOCOL_ERROR (0x1): The endpoint detected an unspecific protocol error.static class
Http2Protocol.ErrorCode$.REFUSED_STREAM$
REFUSED_STREAM (0x7): The endpoint refused the stream prior to performing any application processing (see Section 8.1.4 for details).static class
Http2Protocol.ErrorCode$.SETTINGS_TIMEOUT$
SETTINGS_TIMEOUT (0x4): The endpoint sent a SETTINGS frame but did not receive a response in a timely manner.static class
Http2Protocol.ErrorCode$.STREAM_CLOSED$
STREAM_CLOSED (0x5): The endpoint received a frame after a stream was half-closed.static class
Http2Protocol.ErrorCode$.Unknown
static class
Http2Protocol.ErrorCode$.Unknown$
-
Field Summary
Fields Modifier and Type Field Description static Http2Protocol.ErrorCode$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description ErrorCode$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description scala.collection.immutable.Seq<Http2Protocol.ErrorCode>
All()
Http2Protocol.ErrorCode
byId(int id)
-
-
-
Field Detail
-
MODULE$
public static final Http2Protocol.ErrorCode$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
All
public scala.collection.immutable.Seq<Http2Protocol.ErrorCode> All()
-
byId
public Http2Protocol.ErrorCode byId(int id)
-
-