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
Fields in io.netty.handler.codec.http2 declared as Http2Error Modifier and Type Field Description private Http2Error
Http2Exception. error
private Http2Error
Http2FrameStreamException. error
private static Http2Error[]
Http2Error. INT_TO_ENUM_MAP
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 (package private) void
DefaultHttp2RemoteFlowController.FlowState. cancel(Http2Error error, java.lang.Throwable cause)
Clears the pending queue and writes errors for each remaining frame.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.(package private) static Http2Exception
Http2Exception. newStatic(Http2Error error, java.lang.String message, Http2Exception.ShutdownHint shutdownHint)
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.HeaderListSizeException(int streamId, Http2Error error, java.lang.String message, boolean decode)
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, Http2Exception.ShutdownHint shutdownHint, boolean shared)
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)
StreamException(int streamId, Http2Error error, java.lang.String message)
StreamException(int streamId, Http2Error error, java.lang.String message, java.lang.Throwable cause)
-