zmq.io.EngineNotImplemented 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;
public class EngineNotImplemented implements IEngine
{
public EngineNotImplemented()
{
throw new UnsupportedOperationException(getClass().getName() + " is not implemented");
}
@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 - 2024 Weber Informatics LLC | Privacy Policy