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

zmq.IDecoder Maven / Gradle / Ivy

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