HTTP/2 Frame Listener Comment Correction

Motivation:
Some of the comments in HTTP/2 Frame Listener interface are misleading.

Modifications:
Clarify comments in Http2FrameListener.

Result:
Http2FrameListener onDataRead comments are clarified.
This commit is contained in:
Scott Mitchell 2014-11-20 13:03:14 -05:00
parent 6a30c9534b
commit 9173a2fb7c

View File

@ -28,7 +28,7 @@ public interface Http2FrameListener {
*
* @param ctx the context from the handler where the frame was read.
* @param streamId the subject stream for the frame.
* @param data payload buffer for the frame. If this buffer will be released by the codec.
* @param data payload buffer for the frame. This buffer will be released by the codec.
* @param padding the number of padding bytes found at the end of the frame.
* @param endOfStream Indicates whether this is the last frame to be sent from the remote
* endpoint for this stream.