zmq.io.net.pgm.PgmSender 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
package zmq.io.net.pgm;
import zmq.Options;
import zmq.io.IEngine;
import zmq.io.IOThread;
import zmq.io.SessionBase;
import zmq.io.net.Address;
// TODO V4 implement pgm sender
public class PgmSender implements IEngine
{
public PgmSender(IOThread ioThread, Options options)
{
throw new UnsupportedOperationException();
}
public boolean init(boolean udpEncapsulation, Address addr)
{
return false;
}
@Override
public void plug(IOThread ioThread, SessionBase session)
{
}
@Override
public void terminate()
{
}
@Override
public void restartInput()
{
}
@Override
public void restartOutput()
{
}
@Override
public void zapMsgAvailable()
{
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy