Uses of Interface
io.netty.util.ReferenceCounted
-
Packages that use ReferenceCounted 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. -
-
Uses of ReferenceCounted in io.netty.util
Classes in io.netty.util that implement ReferenceCounted Modifier and Type Class Description class
AbstractReferenceCounted
Abstract base class for classes wants to implementReferenceCounted
.Methods in io.netty.util that return ReferenceCounted Modifier and Type Method Description ReferenceCounted
AbstractReferenceCounted. retain()
ReferenceCounted
AbstractReferenceCounted. retain(int increment)
ReferenceCounted
ReferenceCounted. retain()
Increases the reference count by1
.ReferenceCounted
ReferenceCounted. retain(int increment)
Increases the reference count by the specifiedincrement
.ReferenceCounted
AbstractReferenceCounted. touch()
ReferenceCounted
ReferenceCounted. touch()
Records the current access location of this object for debugging purposes.ReferenceCounted
ReferenceCounted. touch(Object hint)
Records the current access location of this object with an additional arbitrary information for debugging purposes. -
Uses of ReferenceCounted in io.netty.util.internal
Classes in io.netty.util.internal with type parameters of type ReferenceCounted Modifier and Type Class Description class
ReferenceCountUpdater<T extends ReferenceCounted>
Common logic forReferenceCounted
implementationsMethod parameters in io.netty.util.internal with type arguments of type ReferenceCounted Modifier and Type Method Description static long
ReferenceCountUpdater. getUnsafeOffset(Class<? extends ReferenceCounted> clz, String fieldName)
-