public class DefaultFullHttpRequest extends DefaultHttpRequest implements FullHttpRequest
FullHttpRequest
.EMPTY_LAST_CONTENT
Constructor and Description |
---|
DefaultFullHttpRequest(HttpVersion httpVersion,
HttpMethod method,
String uri)
Create a full HTTP response with the given HTTP version, method, and URI.
|
DefaultFullHttpRequest(HttpVersion httpVersion,
HttpMethod method,
String uri,
boolean validateHeaders)
Deprecated.
Use the
DefaultFullHttpRequest(HttpVersion, HttpMethod, String, ByteBuf,
HttpHeadersFactory, HttpHeadersFactory) constructor instead. |
DefaultFullHttpRequest(HttpVersion httpVersion,
HttpMethod method,
String uri,
ByteBuf content)
Create a full HTTP response with the given HTTP version, method, URI, and contents.
|
DefaultFullHttpRequest(HttpVersion httpVersion,
HttpMethod method,
String uri,
ByteBuf content,
boolean validateHeaders)
Deprecated.
Use the
DefaultFullHttpRequest(HttpVersion, HttpMethod, String, ByteBuf,
HttpHeadersFactory, HttpHeadersFactory) constructor instead. |
DefaultFullHttpRequest(HttpVersion httpVersion,
HttpMethod method,
String uri,
ByteBuf content,
HttpHeadersFactory headersFactory,
HttpHeadersFactory trailersFactory)
Create a full HTTP response with the given HTTP version, method, URI, contents,
and factories for creating headers and trailers.
|
DefaultFullHttpRequest(HttpVersion httpVersion,
HttpMethod method,
String uri,
ByteBuf content,
HttpHeaders headers,
HttpHeaders trailingHeader)
Create a full HTTP response with the given HTTP version, method, URI, contents, and header and trailer objects.
|
Modifier and Type | Method and Description |
---|---|
ByteBuf |
content()
Return the data which is held by this
ByteBufHolder . |
FullHttpRequest |
copy()
Creates a deep copy of this
ByteBufHolder . |
FullHttpRequest |
duplicate()
Duplicates this
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 . |
FullHttpRequest |
replace(ByteBuf content)
Returns a new
ByteBufHolder which contains the specified content . |
FullHttpRequest |
retain()
Increases the reference count by
1 . |
FullHttpRequest |
retain(int increment)
Increases the reference count by the specified
increment . |
FullHttpRequest |
retainedDuplicate()
Duplicates this
ByteBufHolder . |
FullHttpRequest |
setMethod(HttpMethod method)
Set the
HttpMethod of this HttpRequest . |
FullHttpRequest |
setProtocolVersion(HttpVersion version)
Set the protocol version of this
HttpMessage |
FullHttpRequest |
setUri(String uri)
Set the requested URI (or alternatively, path)
|
String |
toString() |
FullHttpRequest |
touch()
Records the current access location of this object for debugging purposes.
|
FullHttpRequest |
touch(Object hint)
Records the current access location of this object with an additional arbitrary information for debugging
purposes.
|
HttpHeaders |
trailingHeaders() |
getMethod, getUri, method, uri
getProtocolVersion, headers, protocolVersion
decoderResult, getDecoderResult, setDecoderResult
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
getMethod, getUri, method, uri
getProtocolVersion, headers, protocolVersion
getDecoderResult
decoderResult, setDecoderResult
public DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, String uri)
public DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, String uri, ByteBuf content)
@Deprecated public DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, String uri, boolean validateHeaders)
DefaultFullHttpRequest(HttpVersion, HttpMethod, String, ByteBuf,
HttpHeadersFactory, HttpHeadersFactory)
constructor instead.@Deprecated public DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, String uri, ByteBuf content, boolean validateHeaders)
DefaultFullHttpRequest(HttpVersion, HttpMethod, String, ByteBuf,
HttpHeadersFactory, HttpHeadersFactory)
constructor instead.public DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, String uri, ByteBuf content, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory)
The recommended default header factory is DefaultHttpHeadersFactory.headersFactory()
,
and the recommended default trailer factory is DefaultHttpHeadersFactory.trailersFactory()
.
public DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, String uri, ByteBuf content, HttpHeaders headers, HttpHeaders trailingHeader)
public HttpHeaders trailingHeaders()
trailingHeaders
in interface LastHttpContent
public ByteBuf content()
ByteBufHolder
ByteBufHolder
.content
in interface ByteBufHolder
public int refCnt()
ReferenceCounted
0
, it means this object has been deallocated.refCnt
in interface ReferenceCounted
public FullHttpRequest retain()
ReferenceCounted
1
.retain
in interface ByteBufHolder
retain
in interface FullHttpMessage
retain
in interface FullHttpRequest
retain
in interface HttpContent
retain
in interface LastHttpContent
retain
in interface ReferenceCounted
public FullHttpRequest retain(int increment)
ReferenceCounted
increment
.retain
in interface ByteBufHolder
retain
in interface FullHttpMessage
retain
in interface FullHttpRequest
retain
in interface HttpContent
retain
in interface LastHttpContent
retain
in interface ReferenceCounted
public FullHttpRequest touch()
ReferenceCounted
ResourceLeakDetector
. This method is a shortcut to touch(null)
.touch
in interface ByteBufHolder
touch
in interface FullHttpMessage
touch
in interface FullHttpRequest
touch
in interface HttpContent
touch
in interface LastHttpContent
touch
in interface ReferenceCounted
public FullHttpRequest touch(Object hint)
ReferenceCounted
ResourceLeakDetector
.touch
in interface ByteBufHolder
touch
in interface FullHttpMessage
touch
in interface FullHttpRequest
touch
in interface HttpContent
touch
in interface LastHttpContent
touch
in interface ReferenceCounted
public boolean release()
ReferenceCounted
1
and deallocates this object if the reference count reaches at
0
.release
in interface ReferenceCounted
true
if and only if the reference count became 0
and this object has been deallocatedpublic boolean release(int decrement)
ReferenceCounted
decrement
and deallocates this object if the reference
count reaches at 0
.release
in interface ReferenceCounted
true
if and only if the reference count became 0
and this object has been deallocatedpublic FullHttpRequest setProtocolVersion(HttpVersion version)
HttpMessage
HttpMessage
setProtocolVersion
in interface FullHttpRequest
setProtocolVersion
in interface HttpMessage
setProtocolVersion
in interface HttpRequest
setProtocolVersion
in class DefaultHttpRequest
public FullHttpRequest setMethod(HttpMethod method)
HttpRequest
HttpMethod
of this HttpRequest
.setMethod
in interface FullHttpRequest
setMethod
in interface HttpRequest
setMethod
in class DefaultHttpRequest
public FullHttpRequest setUri(String uri)
HttpRequest
setUri
in interface FullHttpRequest
setUri
in interface HttpRequest
setUri
in class DefaultHttpRequest
public FullHttpRequest copy()
ByteBufHolder
ByteBufHolder
.copy
in interface ByteBufHolder
copy
in interface FullHttpMessage
copy
in interface FullHttpRequest
copy
in interface HttpContent
copy
in interface LastHttpContent
public FullHttpRequest duplicate()
ByteBufHolder
ByteBufHolder
. Be aware that this will not automatically call ByteBufHolder.retain()
.duplicate
in interface ByteBufHolder
duplicate
in interface FullHttpMessage
duplicate
in interface FullHttpRequest
duplicate
in interface HttpContent
duplicate
in interface LastHttpContent
public FullHttpRequest retainedDuplicate()
ByteBufHolder
ByteBufHolder
. This method returns a retained duplicate unlike ByteBufHolder.duplicate()
.retainedDuplicate
in interface ByteBufHolder
retainedDuplicate
in interface FullHttpMessage
retainedDuplicate
in interface FullHttpRequest
retainedDuplicate
in interface HttpContent
retainedDuplicate
in interface LastHttpContent
ByteBuf.retainedDuplicate()
public FullHttpRequest replace(ByteBuf content)
ByteBufHolder
ByteBufHolder
which contains the specified content
.replace
in interface ByteBufHolder
replace
in interface FullHttpMessage
replace
in interface FullHttpRequest
replace
in interface HttpContent
replace
in interface LastHttpContent
public int hashCode()
hashCode
in class DefaultHttpRequest
public boolean equals(Object o)
equals
in class DefaultHttpRequest
public String toString()
toString
in class DefaultHttpRequest
Copyright © 2008–2024 The Netty Project. All rights reserved.