Package | Description |
---|---|
io.netty.util |
Utility classes used across multiple packages.
|
io.netty.util.internal |
Internal-use-only utilities which is not allowed to be used
outside Netty.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractReferenceCounted
Abstract base class for classes wants to implement
ReferenceCounted . |
Modifier and Type | Method and Description |
---|---|
ReferenceCounted |
ReferenceCounted.retain()
Increases the reference count by
1 . |
ReferenceCounted |
AbstractReferenceCounted.retain() |
ReferenceCounted |
ReferenceCounted.retain(int increment)
Increases the reference count by the specified
increment . |
ReferenceCounted |
AbstractReferenceCounted.retain(int increment) |
ReferenceCounted |
ReferenceCounted.touch()
Records the current access location of this object for debugging purposes.
|
ReferenceCounted |
AbstractReferenceCounted.touch() |
ReferenceCounted |
ReferenceCounted.touch(Object hint)
Records the current access location of this object with an additional arbitrary information for debugging
purposes.
|
Modifier and Type | Class and Description |
---|---|
class |
ReferenceCountUpdater<T extends ReferenceCounted>
Common logic for
ReferenceCounted implementations |
Modifier and Type | Method and Description |
---|---|
static long |
ReferenceCountUpdater.getUnsafeOffset(Class<? extends ReferenceCounted> clz,
String fieldName) |
Copyright © 2008–2024 The Netty Project. All rights reserved.