zmq.IDecoder 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;
import java.nio.ByteBuffer;
public interface IDecoder
{
public void setMsgSink(IMsgSink msgSink);
public ByteBuffer getBuffer();
public int processBuffer(ByteBuffer buffer, int size);
public boolean stalled();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy