All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zmq.socket.Raw Maven / Gradle / Ivy

package zmq.socket;

import zmq.Ctx;
import zmq.ZMQ;

public class Raw extends Peer
{
    public Raw(Ctx parent, int tid, int sid)
    {
        super(parent, tid, sid);

        options.type = ZMQ.ZMQ_RAW;
        options.canSendHelloMsg = true;
        options.rawSocket = true;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy