Java io.netty.util ReferenceCountUtil fields, constructors, methods, implement or subclass

Example usage for Java io.netty.util ReferenceCountUtil fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.util ReferenceCountUtil.

The text is from its open source code.

Method

booleanrelease(Object msg)
Try to call ReferenceCounted#release() if the specified message implements ReferenceCounted .
booleanrelease(Object msg, int decrement)
Try to call ReferenceCounted#release(int) if the specified message implements ReferenceCounted .
TreleaseLater(T msg)
Schedules the specified object to be released when the caller thread terminates.
Tretain(T msg)
Try to call ReferenceCounted#retain() if the specified message implements ReferenceCounted .
Tretain(T msg, int increment)
Try to call ReferenceCounted#retain(int) if the specified message implements ReferenceCounted .
voidsafeRelease(Object msg)
Try to call ReferenceCounted#release() if the specified message implements ReferenceCounted .
Ttouch(T msg)
Tries to call ReferenceCounted#touch() if the specified message implements ReferenceCounted .
Ttouch(T msg, Object hint)
Tries to call ReferenceCounted#touch(Object) if the specified message implements ReferenceCounted .