zmq.io.mechanism.gssapi.GssapiServerMechanism 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.mechanism.gssapi;
import zmq.Msg;
import zmq.Options;
import zmq.io.SessionBase;
import zmq.io.mechanism.Mechanism;
import zmq.io.net.Address;
// TODO V4 implement GSSAPI
public class GssapiServerMechanism extends Mechanism
{
public GssapiServerMechanism(SessionBase session, Address peerAddress, Options options)
{
super(session, peerAddress, options);
throw new UnsupportedOperationException("GSSAPI mechanism is not yet implemented");
}
@Override
public Status status()
{
return null;
}
@Override
public int zapMsgAvailable()
{
return 0;
}
@Override
public int processHandshakeCommand(Msg msg)
{
return 0;
}
@Override
public int nextHandshakeCommand(Msg msg)
{
return 0;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy