Uses of Class
io.netty.handler.codec.spdy.SpdySessionStatus
-
Packages that use SpdySessionStatus Package Description io.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol. -
-
Uses of SpdySessionStatus in io.netty.handler.codec.spdy
Fields in io.netty.handler.codec.spdy declared as SpdySessionStatus Modifier and Type Field Description static SpdySessionStatus
SpdySessionStatus. INTERNAL_ERROR
2 Internal Errorstatic SpdySessionStatus
SpdySessionStatus. OK
0 OKstatic SpdySessionStatus
SpdySessionStatus. PROTOCOL_ERROR
1 Protocol ErrorMethods in io.netty.handler.codec.spdy that return SpdySessionStatus Modifier and Type Method Description SpdySessionStatus
DefaultSpdyGoAwayFrame. status()
SpdySessionStatus
SpdyGoAwayFrame. status()
Returns the status of this frame.static SpdySessionStatus
SpdySessionStatus. valueOf(int code)
Returns theSpdySessionStatus
represented by the specified code.Methods in io.netty.handler.codec.spdy with parameters of type SpdySessionStatus Modifier and Type Method Description int
SpdySessionStatus. compareTo(SpdySessionStatus o)
SpdyGoAwayFrame
DefaultSpdyGoAwayFrame. setStatus(SpdySessionStatus status)
SpdyGoAwayFrame
SpdyGoAwayFrame. setStatus(SpdySessionStatus status)
Sets the status of this frame.Constructors in io.netty.handler.codec.spdy with parameters of type SpdySessionStatus Constructor Description DefaultSpdyGoAwayFrame(int lastGoodStreamId, SpdySessionStatus status)
Creates a new instance.
-