public class DefaultFullHttpResponse extends DefaultHttpResponse implements FullHttpResponse
FullHttpResponse.EMPTY_LAST_CONTENT| Constructor and Description |
|---|
DefaultFullHttpResponse(HttpVersion version,
HttpResponseStatus status) |
DefaultFullHttpResponse(HttpVersion version,
HttpResponseStatus status,
boolean validateHeaders) |
DefaultFullHttpResponse(HttpVersion version,
HttpResponseStatus status,
boolean validateHeaders,
boolean singleFieldHeaders) |
DefaultFullHttpResponse(HttpVersion version,
HttpResponseStatus status,
ByteBuf content) |
DefaultFullHttpResponse(HttpVersion version,
HttpResponseStatus status,
ByteBuf content,
boolean singleFieldHeaders) |
DefaultFullHttpResponse(HttpVersion version,
HttpResponseStatus status,
ByteBuf content,
boolean validateHeaders,
boolean singleFieldHeaders) |
| Modifier and Type | Method and Description |
|---|---|
ByteBuf |
content()
Return the data which is held by this
ByteBufHolder. |
FullHttpResponse |
copy()
Create a deep copy of this
ByteBufHolder. |
FullHttpResponse |
copy(ByteBuf newContent)
Create a copy of this
FullHttpMessage with alternative content. |
FullHttpResponse |
duplicate()
Duplicate the
ByteBufHolder. |
boolean |
equals(Object o) |
int |
hashCode() |
int |
refCnt()
Returns the reference count of this object.
|
boolean |
release()
Decreases the reference count by
1 and deallocates this object if the reference count reaches at
0. |
boolean |
release(int decrement)
Decreases the reference count by the specified
decrement and deallocates this object if the reference
count reaches at 0. |
FullHttpResponse |
retain()
Increases the reference count by
1. |
FullHttpResponse |
retain(int increment)
Increases the reference count by the specified
increment. |
FullHttpResponse |
setProtocolVersion(HttpVersion version)
Set the protocol version of this
HttpMessage |
FullHttpResponse |
setStatus(HttpResponseStatus status)
Set the status of this
HttpResponse. |
String |
toString() |
FullHttpResponse |
touch()
Records the current access location of this object for debugging purposes.
|
FullHttpResponse |
touch(Object hint)
Records the current access location of this object with an additonal arbitrary information for debugging
purposes.
|
HttpHeaders |
trailingHeaders() |
statusheaders, protocolVersiondecoderResult, setDecoderResultclone, finalize, getClass, notify, notifyAll, wait, wait, waitstatusheaders, protocolVersiondecoderResult, setDecoderResultpublic DefaultFullHttpResponse(HttpVersion version, HttpResponseStatus status)
public DefaultFullHttpResponse(HttpVersion version, HttpResponseStatus status, ByteBuf content)
public DefaultFullHttpResponse(HttpVersion version, HttpResponseStatus status, boolean validateHeaders)
public DefaultFullHttpResponse(HttpVersion version, HttpResponseStatus status, boolean validateHeaders, boolean singleFieldHeaders)
public DefaultFullHttpResponse(HttpVersion version, HttpResponseStatus status, ByteBuf content, boolean singleFieldHeaders)
public DefaultFullHttpResponse(HttpVersion version, HttpResponseStatus status, ByteBuf content, boolean validateHeaders, boolean singleFieldHeaders)
public HttpHeaders trailingHeaders()
trailingHeaders in interface LastHttpContentpublic ByteBuf content()
ByteBufHolderByteBufHolder.content in interface ByteBufHolderpublic int refCnt()
ReferenceCounted0, it means this object has been deallocated.refCnt in interface ReferenceCountedpublic FullHttpResponse retain()
ReferenceCounted1.retain in interface ByteBufHolderretain in interface FullHttpMessageretain in interface FullHttpResponseretain in interface HttpContentretain in interface LastHttpContentretain in interface ReferenceCountedpublic FullHttpResponse retain(int increment)
ReferenceCountedincrement.retain in interface ByteBufHolderretain in interface FullHttpMessageretain in interface FullHttpResponseretain in interface HttpContentretain in interface LastHttpContentretain in interface ReferenceCountedpublic FullHttpResponse touch()
ReferenceCountedResourceLeakDetector. This method is a shortcut to touch(null).touch in interface ByteBufHoldertouch in interface FullHttpMessagetouch in interface FullHttpResponsetouch in interface HttpContenttouch in interface LastHttpContenttouch in interface ReferenceCountedpublic FullHttpResponse touch(Object hint)
ReferenceCountedResourceLeakDetector.touch in interface ByteBufHoldertouch in interface FullHttpMessagetouch in interface FullHttpResponsetouch in interface HttpContenttouch in interface LastHttpContenttouch in interface ReferenceCountedpublic boolean release()
ReferenceCounted1 and deallocates this object if the reference count reaches at
0.release in interface ReferenceCountedtrue if and only if the reference count became 0 and this object has been deallocatedpublic boolean release(int decrement)
ReferenceCounteddecrement and deallocates this object if the reference
count reaches at 0.release in interface ReferenceCountedtrue if and only if the reference count became 0 and this object has been deallocatedpublic FullHttpResponse setProtocolVersion(HttpVersion version)
HttpMessageHttpMessagesetProtocolVersion in interface FullHttpResponsesetProtocolVersion in interface HttpMessagesetProtocolVersion in interface HttpResponsesetProtocolVersion in class DefaultHttpResponsepublic FullHttpResponse setStatus(HttpResponseStatus status)
HttpResponseHttpResponse.setStatus in interface FullHttpResponsesetStatus in interface HttpResponsesetStatus in class DefaultHttpResponsepublic FullHttpResponse copy(ByteBuf newContent)
FullHttpMessageFullHttpMessage with alternative content.copy in interface FullHttpMessagecopy in interface FullHttpResponsenewContent - The buffer to use instead of this FullHttpMessage's content in the copy operation.
NOTE: retain will NOT be called on this buffer. null results in an empty default choice buffer.
public FullHttpResponse copy()
ByteBufHolderByteBufHolder.copy in interface ByteBufHoldercopy in interface FullHttpMessagecopy in interface FullHttpResponsecopy in interface HttpContentcopy in interface LastHttpContentpublic FullHttpResponse duplicate()
ByteBufHolderByteBufHolder. Be aware that this will not automatically call ByteBufHolder.retain().duplicate in interface ByteBufHolderduplicate in interface FullHttpMessageduplicate in interface FullHttpResponseduplicate in interface HttpContentduplicate in interface LastHttpContentpublic int hashCode()
hashCode in class DefaultHttpResponsepublic boolean equals(Object o)
equals in class DefaultHttpResponsepublic String toString()
toString in class DefaultHttpResponseCopyright © 2008–2015 The Netty Project. All rights reserved.