Uses of Class
io.netty.handler.codec.http2.Http2Error
-
Packages that use Http2Error Package Description io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of Http2Error in io.netty.handler.codec.http2
Methods in io.netty.handler.codec.http2 that return Http2Error Modifier and Type Method Description Http2Error
Http2Exception. error()
Http2Error
Http2FrameStreamException. error()
static Http2Error
Http2Error. valueOf(long value)
Returns the enum constant of this type with the specified name.static Http2Error
Http2Error. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Http2Error[]
Http2Error. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.netty.handler.codec.http2 with parameters of type Http2Error Modifier and Type Method Description static Http2Exception
Http2Exception. closedStreamError(Http2Error error, java.lang.String fmt, java.lang.Object... args)
Use if an error has occurred which can not be isolated to a single stream, but instead applies to the entire connection.static Http2Exception
Http2Exception. connectionError(Http2Error error, java.lang.String fmt, java.lang.Object... args)
Use if an error has occurred which can not be isolated to a single stream, but instead applies to the entire connection.static Http2Exception
Http2Exception. connectionError(Http2Error error, java.lang.Throwable cause, java.lang.String fmt, java.lang.Object... args)
Use if an error has occurred which can not be isolated to a single stream, but instead applies to the entire connection.static Http2Exception
Http2Exception. headerListSizeError(int id, Http2Error error, boolean onDecode, java.lang.String fmt, java.lang.Object... args)
A specific stream error resulting from failing to decode headers that exceeds the max header size list.static Http2Exception
Http2Exception. streamError(int id, Http2Error error, java.lang.String fmt, java.lang.Object... args)
Use if an error which can be isolated to a single stream has occurred.static Http2Exception
Http2Exception. streamError(int id, Http2Error error, java.lang.Throwable cause, java.lang.String fmt, java.lang.Object... args)
Use if an error which can be isolated to a single stream has occurred.Constructors in io.netty.handler.codec.http2 with parameters of type Http2Error Constructor Description ClosedStreamCreationException(Http2Error error)
ClosedStreamCreationException(Http2Error error, java.lang.String message)
ClosedStreamCreationException(Http2Error error, java.lang.String message, java.lang.Throwable cause)
CompositeStreamException(Http2Error error, int initialCapacity)
DefaultHttp2GoAwayFrame(Http2Error error)
Equivalent tonew DefaultHttp2GoAwayFrame(error.code())
.DefaultHttp2GoAwayFrame(Http2Error error, ByteBuf content)
DefaultHttp2ResetFrame(Http2Error error)
Construct a reset message.Http2Exception(Http2Error error)
Http2Exception(Http2Error error, Http2Exception.ShutdownHint shutdownHint)
Http2Exception(Http2Error error, java.lang.String message)
Http2Exception(Http2Error error, java.lang.String message, Http2Exception.ShutdownHint shutdownHint)
Http2Exception(Http2Error error, java.lang.String message, java.lang.Throwable cause)
Http2Exception(Http2Error error, java.lang.String message, java.lang.Throwable cause, Http2Exception.ShutdownHint shutdownHint)
Http2FrameStreamException(Http2FrameStream stream, Http2Error error, java.lang.Throwable cause)
-