zmq.io.coder.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
The newest version!
package zmq.io.coder;
import java.nio.ByteBuffer;
import zmq.Msg;
import zmq.util.ValueReference;
public interface IDecoder
{
interface Step
{
enum Result
{
MORE_DATA,
DECODED,
ERROR;
}
Result apply();
}
ByteBuffer getBuffer();
Step.Result decode(ByteBuffer buffer, int size, ValueReference processed);
Msg msg();
void destroy();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy