org.zeromq.ZMQStreamer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zmq-perf Show documentation
Show all versions of zmq-perf Show documentation
org.zeromq Java ZeroMQ perf
The newest version!
package org.zeromq;
import org.zeromq.ZMQ.Context;
import org.zeromq.ZMQ.Socket;
/**
* ZeroMQ Streamer Device implementation.
*
* @author Alois Belaska <[email protected]>
*/
public class ZMQStreamer extends ZMQForwarder {
/**
* Class constructor.
*
* @param context a 0MQ context previously created.
* @param inSocket input socket
* @param outSocket output socket
*/
public ZMQStreamer(Context context, Socket inSocket, Socket outSocket) {
super(context, inSocket, outSocket);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy