zmq.IEncoder 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 IEncoder
{
// Set message producer.
public void setMsgSource(IMsgSource msgSource);
// The function returns a batch of binary data. The data
// are filled to a supplied buffer. If no buffer is supplied (data_
// is null) encoder will provide buffer of its own.
public Transfer getData(ByteBuffer buffer);
public boolean hasData();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy