SPDY: allow subclassing of SpdyFrameCodec

This commit is contained in:
Jeff Pinner 2014-05-02 09:11:58 -07:00 committed by Norman Maurer
parent 724aed4757
commit c09d85f699

View File

@ -29,7 +29,7 @@ import java.util.List;
/** /**
* A {@link ChannelHandler} that encodes and decodes SPDY Frames. * A {@link ChannelHandler} that encodes and decodes SPDY Frames.
*/ */
public final class SpdyFrameCodec extends ByteToMessageDecoder implements SpdyFrameDecoderDelegate { public class SpdyFrameCodec extends ByteToMessageDecoder implements SpdyFrameDecoderDelegate {
private static final SpdyProtocolException INVALID_FRAME = private static final SpdyProtocolException INVALID_FRAME =
new SpdyProtocolException("Received invalid frame"); new SpdyProtocolException("Received invalid frame");