List of usage examples for io.netty.util ReferenceCountUtil touch
@SuppressWarnings("unchecked") public static <T> T touch(T msg)
From source file:com.linecorp.armeria.common.stream.AbstractStreamMessage.java
License:Apache License
T prepareObjectForNotification(SubscriptionImpl subscription, T o) {
ReferenceCountUtil.touch(o);
onRemoval(o);//from w w w. j ava 2s . c o m
if (!subscription.withPooledObjects()) {
o = PooledObjects.toUnpooled(o);
}
return o;
}