zmq.io.net.tipc.TipcConnecter 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.net.tipc;
import zmq.Options;
import zmq.io.IOThread;
import zmq.io.SessionBase;
import zmq.io.net.Address;
import zmq.io.net.tcp.TcpConnecter;
public class TipcConnecter extends TcpConnecter
{
public TipcConnecter(IOThread ioThread, SessionBase session, final Options options, final Address addr,
boolean wait)
{
super(ioThread, session, options, addr, wait);
// TODO V4 implement Tipc
throw new UnsupportedOperationException("TODO implement Tipc");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy