public static final class HttpServerUpgradeHandler.UpgradeEvent extends Object implements ReferenceCounted
| Modifier and Type | Method and Description |
|---|---|
String |
protocol()
The protocol that the channel has been upgraded to.
|
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. |
HttpServerUpgradeHandler.UpgradeEvent |
retain()
Increases the reference count by
1. |
HttpServerUpgradeHandler.UpgradeEvent |
retain(int increment)
Increases the reference count by the specified
increment. |
String |
toString() |
HttpServerUpgradeHandler.UpgradeEvent |
touch()
Records the current access location of this object for debugging purposes.
|
HttpServerUpgradeHandler.UpgradeEvent |
touch(Object hint)
Records the current access location of this object with an additonal arbitrary information for debugging
purposes.
|
FullHttpRequest |
upgradeRequest()
Gets the request that triggered the protocol upgrade.
|
public String protocol()
public FullHttpRequest upgradeRequest()
public int refCnt()
ReferenceCounted0, it means this object has been deallocated.refCnt in interface ReferenceCountedpublic HttpServerUpgradeHandler.UpgradeEvent retain()
ReferenceCounted1.retain in interface ReferenceCountedpublic HttpServerUpgradeHandler.UpgradeEvent retain(int increment)
ReferenceCountedincrement.retain in interface ReferenceCountedpublic HttpServerUpgradeHandler.UpgradeEvent touch()
ReferenceCountedResourceLeakDetector. This method is a shortcut to touch(null).touch in interface ReferenceCountedpublic HttpServerUpgradeHandler.UpgradeEvent touch(Object hint)
ReferenceCountedResourceLeakDetector.touch 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 deallocatedCopyright © 2008–2015 The Netty Project. All rights reserved.