Package io.netty.handler.codec.http
Class HttpObjectAggregator.AggregatedFullHttpResponse
- java.lang.Object
-
- io.netty.handler.codec.http.HttpObjectAggregator.AggregatedFullHttpMessage
-
- io.netty.handler.codec.http.HttpObjectAggregator.AggregatedFullHttpResponse
-
- All Implemented Interfaces:
ByteBufHolder,DecoderResultProvider,FullHttpMessage,FullHttpResponse,HttpContent,HttpMessage,HttpObject,HttpResponse,LastHttpContent,ReferenceCounted
- Enclosing class:
- HttpObjectAggregator
private static final class HttpObjectAggregator.AggregatedFullHttpResponse extends HttpObjectAggregator.AggregatedFullHttpMessage implements FullHttpResponse
-
-
Field Summary
-
Fields inherited from class io.netty.handler.codec.http.HttpObjectAggregator.AggregatedFullHttpMessage
message
-
Fields inherited from interface io.netty.handler.codec.http.LastHttpContent
EMPTY_LAST_CONTENT
-
-
Constructor Summary
Constructors Constructor Description AggregatedFullHttpResponse(HttpResponse message, ByteBuf content, HttpHeaders trailingHeaders)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FullHttpResponsecopy()Creates a deep copy of thisByteBufHolder.FullHttpResponseduplicate()Duplicates thisByteBufHolder.HttpResponseStatusgetStatus()FullHttpResponsereplace(ByteBuf content)Returns a newByteBufHolderwhich contains the specifiedcontent.FullHttpResponseretain()Increases the reference count by1.FullHttpResponseretain(int increment)Increases the reference count by the specifiedincrement.FullHttpResponseretainedDuplicate()Duplicates thisByteBufHolder.FullHttpResponsesetProtocolVersion(HttpVersion version)Set the protocol version of thisHttpMessageFullHttpResponsesetStatus(HttpResponseStatus status)Set the status of thisHttpResponse.HttpResponseStatusstatus()Returns the status of thisHttpResponse.java.lang.StringtoString()FullHttpResponsetouch()Records the current access location of this object for debugging purposes.FullHttpResponsetouch(java.lang.Object hint)Records the current access location of this object with an additional arbitrary information for debugging purposes.-
Methods inherited from class io.netty.handler.codec.http.HttpObjectAggregator.AggregatedFullHttpMessage
content, decoderResult, getDecoderResult, getProtocolVersion, headers, protocolVersion, refCnt, release, release, setDecoderResult, setTrailingHeaders, trailingHeaders
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface io.netty.buffer.ByteBufHolder
content
-
Methods inherited from interface io.netty.handler.codec.DecoderResultProvider
decoderResult, setDecoderResult
-
Methods inherited from interface io.netty.handler.codec.http.HttpMessage
getProtocolVersion, headers, protocolVersion
-
Methods inherited from interface io.netty.handler.codec.http.HttpObject
getDecoderResult
-
Methods inherited from interface io.netty.handler.codec.http.LastHttpContent
trailingHeaders
-
Methods inherited from interface io.netty.util.ReferenceCounted
refCnt, release, release
-
-
-
-
Constructor Detail
-
AggregatedFullHttpResponse
AggregatedFullHttpResponse(HttpResponse message, ByteBuf content, HttpHeaders trailingHeaders)
-
-
Method Detail
-
copy
public FullHttpResponse copy()
Description copied from interface:ByteBufHolderCreates a deep copy of thisByteBufHolder.- Specified by:
copyin interfaceByteBufHolder- Specified by:
copyin interfaceFullHttpMessage- Specified by:
copyin interfaceFullHttpResponse- Specified by:
copyin interfaceHttpContent- Specified by:
copyin interfaceLastHttpContent- Specified by:
copyin classHttpObjectAggregator.AggregatedFullHttpMessage
-
duplicate
public FullHttpResponse duplicate()
Description copied from interface:ByteBufHolderDuplicates thisByteBufHolder. Be aware that this will not automatically callByteBufHolder.retain().- Specified by:
duplicatein interfaceByteBufHolder- Specified by:
duplicatein interfaceFullHttpMessage- Specified by:
duplicatein interfaceFullHttpResponse- Specified by:
duplicatein interfaceHttpContent- Specified by:
duplicatein interfaceLastHttpContent- Specified by:
duplicatein classHttpObjectAggregator.AggregatedFullHttpMessage
-
retainedDuplicate
public FullHttpResponse retainedDuplicate()
Description copied from interface:ByteBufHolderDuplicates thisByteBufHolder. This method returns a retained duplicate unlikeByteBufHolder.duplicate().- Specified by:
retainedDuplicatein interfaceByteBufHolder- Specified by:
retainedDuplicatein interfaceFullHttpMessage- Specified by:
retainedDuplicatein interfaceFullHttpResponse- Specified by:
retainedDuplicatein interfaceHttpContent- Specified by:
retainedDuplicatein interfaceLastHttpContent- Specified by:
retainedDuplicatein classHttpObjectAggregator.AggregatedFullHttpMessage- See Also:
ByteBuf.retainedDuplicate()
-
replace
public FullHttpResponse replace(ByteBuf content)
Description copied from interface:ByteBufHolderReturns a newByteBufHolderwhich contains the specifiedcontent.- Specified by:
replacein interfaceByteBufHolder- Specified by:
replacein interfaceFullHttpMessage- Specified by:
replacein interfaceFullHttpResponse- Specified by:
replacein interfaceHttpContent- Specified by:
replacein interfaceLastHttpContent
-
setStatus
public FullHttpResponse setStatus(HttpResponseStatus status)
Description copied from interface:HttpResponseSet the status of thisHttpResponse.- Specified by:
setStatusin interfaceFullHttpResponse- Specified by:
setStatusin interfaceHttpResponse
-
getStatus
public HttpResponseStatus getStatus()
- Specified by:
getStatusin interfaceHttpResponse
-
status
public HttpResponseStatus status()
Description copied from interface:HttpResponseReturns the status of thisHttpResponse.- Specified by:
statusin interfaceHttpResponse- Returns:
- The
HttpResponseStatusof thisHttpResponse
-
setProtocolVersion
public FullHttpResponse setProtocolVersion(HttpVersion version)
Description copied from interface:HttpMessageSet the protocol version of thisHttpMessage- Specified by:
setProtocolVersionin interfaceFullHttpResponse- Specified by:
setProtocolVersionin interfaceHttpMessage- Specified by:
setProtocolVersionin interfaceHttpResponse- Overrides:
setProtocolVersionin classHttpObjectAggregator.AggregatedFullHttpMessage
-
retain
public FullHttpResponse retain(int increment)
Description copied from interface:ReferenceCountedIncreases the reference count by the specifiedincrement.- Specified by:
retainin interfaceByteBufHolder- Specified by:
retainin interfaceFullHttpMessage- Specified by:
retainin interfaceFullHttpResponse- Specified by:
retainin interfaceHttpContent- Specified by:
retainin interfaceLastHttpContent- Specified by:
retainin interfaceReferenceCounted- Overrides:
retainin classHttpObjectAggregator.AggregatedFullHttpMessage
-
retain
public FullHttpResponse retain()
Description copied from interface:ReferenceCountedIncreases the reference count by1.- Specified by:
retainin interfaceByteBufHolder- Specified by:
retainin interfaceFullHttpMessage- Specified by:
retainin interfaceFullHttpResponse- Specified by:
retainin interfaceHttpContent- Specified by:
retainin interfaceLastHttpContent- Specified by:
retainin interfaceReferenceCounted- Overrides:
retainin classHttpObjectAggregator.AggregatedFullHttpMessage
-
touch
public FullHttpResponse 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 interfaceFullHttpMessage- Specified by:
touchin interfaceFullHttpResponse- Specified by:
touchin interfaceHttpContent- Specified by:
touchin interfaceLastHttpContent- Specified by:
touchin interfaceReferenceCounted- Overrides:
touchin classHttpObjectAggregator.AggregatedFullHttpMessage
-
touch
public FullHttpResponse 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 interfaceFullHttpMessage- Specified by:
touchin interfaceFullHttpResponse- Specified by:
touchin interfaceHttpContent- Specified by:
touchin interfaceLastHttpContent- Specified by:
touchin interfaceReferenceCounted- Overrides:
touchin classHttpObjectAggregator.AggregatedFullHttpMessage
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-