
zmq.IMailbox Maven / Gradle / Ivy
package zmq;
import java.io.Closeable;
public interface IMailbox extends Closeable
{
void send(final Command cmd);
Command recv(long timeout);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy
package zmq;
import java.io.Closeable;
public interface IMailbox extends Closeable
{
void send(final Command cmd);
Command recv(long timeout);
}