zmq.IMailbox 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;
import java.io.Closeable;
public interface IMailbox extends Closeable
{
void send(final Command cmd);
Command recv(long timeout);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy