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 set_msg_sink (IMsgSink msg_sink);
public ByteBuffer get_buffer ();
public int process_buffer(ByteBuffer buf_, int size_);
public boolean stalled ();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy