public static final class HttpServerUpgradeHandler.UpgradeEvent extends java.lang.Object implements ReferenceCounted
| Modifier and Type | Field and Description |
|---|---|
private java.lang.CharSequence |
protocol |
private FullHttpRequest |
upgradeRequest |
| Constructor and Description |
|---|
UpgradeEvent(java.lang.CharSequence protocol,
FullHttpRequest upgradeRequest) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.CharSequence |
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. |
java.lang.String |
toString() |
HttpServerUpgradeHandler.UpgradeEvent |
touch()
Records the current access location of this object for debugging purposes.
|
HttpServerUpgradeHandler.UpgradeEvent |
touch(java.lang.Object hint)
Records the current access location of this object with an additional arbitrary information for debugging
purposes.
|
FullHttpRequest |
upgradeRequest()
Gets the request that triggered the protocol upgrade.
|
private final java.lang.CharSequence protocol
private final FullHttpRequest upgradeRequest
UpgradeEvent(java.lang.CharSequence protocol,
FullHttpRequest upgradeRequest)
public java.lang.CharSequence 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(java.lang.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 deallocatedpublic java.lang.String toString()
toString in class java.lang.Object