zmq.io.coder.Encoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeromq Show documentation
Show all versions of jeromq Show documentation
Pure Java implementation of libzmq
package zmq.io.coder;
import zmq.util.Errno;
public abstract class Encoder extends EncoderBase
{
protected final Runnable sizeReady = new Runnable()
{
@Override
public void run()
{
sizeReady();
}
};
protected final Runnable messageReady = new Runnable()
{
@Override
public void run()
{
messageReady();
}
};
protected Encoder(Errno errno, int bufsize)
{
super(errno, bufsize);
}
protected abstract void sizeReady();
protected abstract void messageReady();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy