Package io.netty.handler.codec.http2
Interface Http2GoAwayFrame
-
- All Superinterfaces:
ByteBufHolder,Http2Frame,ReferenceCounted
- All Known Implementing Classes:
DefaultHttp2GoAwayFrame
public interface Http2GoAwayFrame extends Http2Frame, ByteBufHolder
HTTP/2 GOAWAY frame.The last stream identifier must not be set by the application, but instead the relative
extraStreamIds()should be used. ThelastStreamId()will only be set for incoming GOAWAY frames by the HTTP/2 codec.Graceful shutdown as described in the HTTP/2 spec can be accomplished by calling
#setExtraStreamIds(Integer.MAX_VALUE).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ByteBufcontent()Optional debugging information describing cause the GOAWAY.Http2GoAwayFramecopy()Creates a deep copy of thisByteBufHolder.Http2GoAwayFrameduplicate()Duplicates thisByteBufHolder.longerrorCode()The reason for beginning closure of the connection.intextraStreamIds()The number of IDs to reserve for the receiver to use while GOAWAY is in transit.intlastStreamId()Returns the last stream identifier if set, or-1else.Http2GoAwayFramereplace(ByteBuf content)Returns a newByteBufHolderwhich contains the specifiedcontent.Http2GoAwayFrameretain()Increases the reference count by1.Http2GoAwayFrameretain(int increment)Increases the reference count by the specifiedincrement.Http2GoAwayFrameretainedDuplicate()Duplicates thisByteBufHolder.Http2GoAwayFramesetExtraStreamIds(int extraStreamIds)Sets the number of IDs to reserve for the receiver to use while GOAWAY is in transit.Http2GoAwayFrametouch()Records the current access location of this object for debugging purposes.Http2GoAwayFrametouch(java.lang.Object hint)Records the current access location of this object with an additional arbitrary information for debugging purposes.-
Methods inherited from interface io.netty.handler.codec.http2.Http2Frame
name
-
Methods inherited from interface io.netty.util.ReferenceCounted
refCnt, release, release
-
-
-
-
Method Detail
-
errorCode
long errorCode()
The reason for beginning closure of the connection. Represented as an HTTP/2 error code.
-
extraStreamIds
int extraStreamIds()
The number of IDs to reserve for the receiver to use while GOAWAY is in transit. This allows for new streams currently en route to still be created, up to a point, which allows for very graceful shutdown of both sides.
-
setExtraStreamIds
Http2GoAwayFrame setExtraStreamIds(int extraStreamIds)
Sets the number of IDs to reserve for the receiver to use while GOAWAY is in transit.- Returns:
this- See Also:
extraStreamIds()
-
lastStreamId
int lastStreamId()
Returns the last stream identifier if set, or-1else.
-
content
ByteBuf content()
Optional debugging information describing cause the GOAWAY. Will not benull, but may be empty.- Specified by:
contentin interfaceByteBufHolder
-
copy
Http2GoAwayFrame copy()
Description copied from interface:ByteBufHolderCreates a deep copy of thisByteBufHolder.- Specified by:
copyin interfaceByteBufHolder
-
duplicate
Http2GoAwayFrame duplicate()
Description copied from interface:ByteBufHolderDuplicates thisByteBufHolder. Be aware that this will not automatically callByteBufHolder.retain().- Specified by:
duplicatein interfaceByteBufHolder
-
retainedDuplicate
Http2GoAwayFrame retainedDuplicate()
Description copied from interface:ByteBufHolderDuplicates thisByteBufHolder. This method returns a retained duplicate unlikeByteBufHolder.duplicate().- Specified by:
retainedDuplicatein interfaceByteBufHolder- See Also:
ByteBuf.retainedDuplicate()
-
replace
Http2GoAwayFrame replace(ByteBuf content)
Description copied from interface:ByteBufHolderReturns a newByteBufHolderwhich contains the specifiedcontent.- Specified by:
replacein interfaceByteBufHolder
-
retain
Http2GoAwayFrame retain()
Description copied from interface:ReferenceCountedIncreases the reference count by1.- Specified by:
retainin interfaceByteBufHolder- Specified by:
retainin interfaceReferenceCounted
-
retain
Http2GoAwayFrame retain(int increment)
Description copied from interface:ReferenceCountedIncreases the reference count by the specifiedincrement.- Specified by:
retainin interfaceByteBufHolder- Specified by:
retainin interfaceReferenceCounted
-
touch
Http2GoAwayFrame touch()
Description copied from interface:ReferenceCountedRecords the current access location of this object for debugging purposes. If this object is determined to be leaked, the information recorded by this operation will be provided to you viaResourceLeakDetector. This method is a shortcut totouch(null).- Specified by:
touchin interfaceByteBufHolder- Specified by:
touchin interfaceReferenceCounted
-
touch
Http2GoAwayFrame touch(java.lang.Object hint)
Description copied from interface:ReferenceCountedRecords the current access location of this object with an additional arbitrary information for debugging purposes. If this object is determined to be leaked, the information recorded by this operation will be provided to you viaResourceLeakDetector.- Specified by:
touchin interfaceByteBufHolder- Specified by:
touchin interfaceReferenceCounted
-
-