org.jgroups.RefcountedNioMessage Maven / Gradle / Ivy
Go to download
This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including
all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and
JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up
with different versions on classes on the class path).
package org.jgroups;
import org.jgroups.annotations.Experimental;
import org.jgroups.util.RefcountImpl;
import java.nio.ByteBuffer;
import java.util.function.Consumer;
/**
* Ref-counted message implementation.
* Note that this class is experimental and may get removed without notice. The point of it is to get experience with
* ref counted messages and see if they're needed or not.
* See https://issues.redhat.com/browse/JGRP-2417 for details
* @author Bela Ban
* @since 5.1.0
*/
@Experimental
public class RefcountedNioMessage extends NioMessage implements Refcountable {
protected final RefcountImpl impl=new RefcountImpl<>();
public RefcountedNioMessage() {
}
public RefcountedNioMessage(Address dest) {
super(dest);
}
public RefcountedNioMessage(Address dest, ByteBuffer buf) {
super(dest, buf);
}
public synchronized byte getRefcount() {
return impl.getRefcount();
}
@Override public synchronized RefcountedNioMessage incr() {
impl.incr();
return this;
}
@Override public synchronized RefcountedNioMessage decr() {
impl.decr(this);
return this;
}
public RefcountedNioMessage onRelease(Consumer rc) {
impl.onRelease(rc);
return this;
}
@Override
public String toString() {
return String.format("%s (refcnt=%d)", super.toString(), impl.getRefcount());
}
}