Uses of Class
org.jboss.netty.handler.codec.spdy.SpdySessionStatus
Packages that use SpdySessionStatus
Package
Description
Encoder, decoder, session handler and their related message types for the SPDY protocol.
-
Uses of SpdySessionStatus in org.jboss.netty.handler.codec.spdy
Fields in org.jboss.netty.handler.codec.spdy declared as SpdySessionStatusModifier and TypeFieldDescriptionstatic final SpdySessionStatus
SpdySessionStatus.INTERNAL_ERROR
2 Internal Errorstatic final SpdySessionStatus
SpdySessionStatus.OK
0 OKstatic final SpdySessionStatus
SpdySessionStatus.PROTOCOL_ERROR
1 Protocol Errorprivate SpdySessionStatus
DefaultSpdyGoAwayFrame.status
Methods in org.jboss.netty.handler.codec.spdy that return SpdySessionStatusModifier and TypeMethodDescriptionDefaultSpdyGoAwayFrame.getStatus()
SpdyGoAwayFrame.getStatus()
Returns the status of this frame.static SpdySessionStatus
SpdySessionStatus.valueOf
(int code) Returns theSpdySessionStatus
represented by the specified code.Methods in org.jboss.netty.handler.codec.spdy with parameters of type SpdySessionStatusModifier and TypeMethodDescriptionint
SpdySessionStatus.compareTo
(SpdySessionStatus o) private void
SpdySessionHandler.issueSessionError
(ChannelHandlerContext ctx, Channel channel, SocketAddress remoteAddress, SpdySessionStatus status) private ChannelFuture
SpdySessionHandler.sendGoAwayFrame
(ChannelHandlerContext ctx, Channel channel, SocketAddress remoteAddress, SpdySessionStatus status) void
DefaultSpdyGoAwayFrame.setStatus
(SpdySessionStatus status) void
SpdyGoAwayFrame.setStatus
(SpdySessionStatus status) Sets the status of this frame.Constructors in org.jboss.netty.handler.codec.spdy with parameters of type SpdySessionStatusModifierConstructorDescriptionDefaultSpdyGoAwayFrame
(int lastGoodStreamId, SpdySessionStatus status) Creates a new instance.