All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zmq.IEncoder Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
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