Uses of Class
zmq.SocketBase
-
Packages that use SocketBase Package Description org.zeromq Provides high-level bindings for ØMQ.zmq Provides low-level bindings for ØMQ.zmq.io zmq.io.net.ipc zmq.io.net.tcp zmq.io.net.tipc zmq.poll zmq.socket zmq.socket.pipeline zmq.socket.pubsub zmq.socket.reqrep -
-
Uses of SocketBase in org.zeromq
Fields in org.zeromq declared as SocketBase Modifier and Type Field Description private SocketBase
ZMQ.Socket. base
private SocketBase
ZSocket. socketBase
Fields in org.zeromq with type parameters of type SocketBase Modifier and Type Field Description private java.util.Set<SocketBase>
ManagedContext. sockets
Methods in org.zeromq that return SocketBase Modifier and Type Method Description SocketBase
ZMQ.Socket. base()
DO NOT USE if you're trying to build a special proxy(package private) SocketBase
ManagedContext. createSocket(int type)
Methods in org.zeromq with parameters of type SocketBase Modifier and Type Method Description (package private) void
ManagedContext. destroy(SocketBase socketBase)
Constructors in org.zeromq with parameters of type SocketBase Constructor Description Socket(SocketBase base)
-
Uses of SocketBase in zmq
Fields in zmq declared as SocketBase Modifier and Type Field Description private SocketBase
SocketBase. monitorSocket
SocketBase
Ctx.Endpoint. socket
Fields in zmq with type parameters of type SocketBase Modifier and Type Field Description private java.util.List<SocketBase>
Ctx. sockets
Methods in zmq that return SocketBase Modifier and Type Method Description SocketBase
Ctx. createSocket(int type)
static SocketBase
ZMQ. socket(Ctx ctx, int type)
Methods in zmq with parameters of type SocketBase Modifier and Type Method Description static boolean
ZMQ. bind(SocketBase s, java.lang.String addr)
private boolean
Proxy. capture(SocketBase capture, Msg msg, int more)
private static void
ZMQ. checkSocket(SocketBase s)
static void
ZMQ. close(SocketBase s)
static void
ZMQ. closeZeroLinger(SocketBase s)
static boolean
ZMQ. connect(SocketBase s, java.lang.String addr)
private void
Ctx. connectInprocSockets(SocketBase bindSocket, Options bindOptions, Ctx.PendingConnection pendingConnection, Ctx.Side side)
(package private) void
Ctx. connectPending(java.lang.String addr, SocketBase bindSocket)
protected void
ZObject. connectPending(java.lang.String addr, SocketBase bindSocket)
(package private) void
Ctx. destroySocket(SocketBase socket)
protected void
ZObject. destroySocket(SocketBase socket)
static boolean
ZMQ. device(int device, SocketBase frontend, SocketBase backend)
static boolean
ZMQ. disconnect(SocketBase s, java.lang.String addr)
private boolean
Proxy. forward(SocketBase from, SocketBase to, SocketBase capture)
static int
ZMQ. getSocketOption(SocketBase s, int opt)
static java.lang.Object
ZMQ. getSocketOptionExt(SocketBase s, int option)
static boolean
ZMQ. monitorSocket(SocketBase s, java.lang.String addr, int events)
private boolean
Proxy. process(PollItem read, PollItem write, SocketBase frontend, SocketBase backend)
protected void
Reaper. processReap(SocketBase socket)
protected void
ZObject. processReap(SocketBase socket)
static boolean
Proxy. proxy(SocketBase frontend, SocketBase backend, SocketBase capture)
static boolean
Proxy. proxy(SocketBase frontend, SocketBase backend, SocketBase capture, SocketBase control)
static boolean
ZMQ. proxy(SocketBase frontend, SocketBase backend, SocketBase capture)
static boolean
ZMQ. proxy(SocketBase frontend, SocketBase backend, SocketBase capture, SocketBase control)
static ZMQ.Event
ZMQ.Event. read(SocketBase s)
static ZMQ.Event
ZMQ.Event. read(SocketBase s, int flags)
static Msg
ZMQ. recv(SocketBase s, int flags)
int
ZMQ. recviov(SocketBase s, byte[][] a, int count, int flags)
static Msg
ZMQ. recvMsg(SocketBase s, int flags)
static int
ZMQ. send(SocketBase s, byte[] buf, int flags)
static int
ZMQ. send(SocketBase s, byte[] buf, int len, int flags)
static int
ZMQ. send(SocketBase s, java.lang.String str, int flags)
static int
ZMQ. send(SocketBase s, Msg msg, int flags)
protected void
ZObject. sendInprocConnected(SocketBase socket)
int
ZMQ. sendiov(SocketBase s, byte[][] a, int count, int flags)
static boolean
ZMQ. sendMsg(SocketBase socket, byte[]... data)
static int
ZMQ. sendMsg(SocketBase s, Msg msg, int flags)
protected void
ZObject. sendReap(SocketBase socket)
static boolean
ZMQ. setSocketOption(SocketBase s, int option, java.lang.Object optval)
private boolean
Proxy. start(SocketBase frontend, SocketBase backend, SocketBase capture, SocketBase control)
static boolean
ZMQ. unbind(SocketBase s, java.lang.String addr)
(package private) boolean
Ctx. unregisterEndpoint(java.lang.String addr, SocketBase socket)
protected boolean
ZObject. unregisterEndpoint(java.lang.String addr, SocketBase socket)
(package private) void
Ctx. unregisterEndpoints(SocketBase socket)
protected void
ZObject. unregisterEndpoints(SocketBase socket)
boolean
ZMQ.Event. write(SocketBase s)
Constructors in zmq with parameters of type SocketBase Constructor Description Endpoint(SocketBase socket, Options options)
-
Uses of SocketBase in zmq.io
Fields in zmq.io declared as SocketBase Modifier and Type Field Description protected SocketBase
SessionBase. socket
private SocketBase
StreamEngine. socket
Methods in zmq.io that return SocketBase Modifier and Type Method Description SocketBase
SessionBase. getSocket()
Constructors in zmq.io with parameters of type SocketBase Constructor Description SessionBase(IOThread ioThread, boolean connect, SocketBase socket, Options options, Address addr)
-
Uses of SocketBase in zmq.io.net.ipc
Constructors in zmq.io.net.ipc with parameters of type SocketBase Constructor Description IpcListener(IOThread ioThread, SocketBase socket, Options options)
-
Uses of SocketBase in zmq.io.net.tcp
Fields in zmq.io.net.tcp declared as SocketBase Modifier and Type Field Description private SocketBase
TcpConnecter. socket
private SocketBase
TcpListener. socket
Constructors in zmq.io.net.tcp with parameters of type SocketBase Constructor Description TcpListener(IOThread ioThread, SocketBase socket, Options options)
-
Uses of SocketBase in zmq.io.net.tipc
Constructors in zmq.io.net.tipc with parameters of type SocketBase Constructor Description TipcListener(IOThread ioThread, SocketBase socket, Options options)
-
Uses of SocketBase in zmq.poll
Fields in zmq.poll declared as SocketBase Modifier and Type Field Description private SocketBase
PollItem. socket
Methods in zmq.poll that return SocketBase Modifier and Type Method Description SocketBase
PollItem. getSocket()
Constructors in zmq.poll with parameters of type SocketBase Constructor Description PollItem(SocketBase socket, int ops)
PollItem(SocketBase socket, java.nio.channels.SelectableChannel channel, int ops)
-
Uses of SocketBase in zmq.socket
Subclasses of SocketBase in zmq.socket Modifier and Type Class Description class
Pair
class
Stream
Methods in zmq.socket that return SocketBase Modifier and Type Method Description static SocketBase
Sockets. create(int socketType, Ctx parent, int tid, int sid)
(package private) abstract SocketBase
Sockets. create(Ctx parent, int tid, int sid)
Methods in zmq.socket with parameters of type SocketBase Modifier and Type Method Description SessionBase
Sockets. create(IOThread ioThread, boolean connect, SocketBase socket, Options options, Address addr)
static SessionBase
Sockets. createSession(IOThread ioThread, boolean connect, SocketBase socket, Options options, Address addr)
-
Uses of SocketBase in zmq.socket.pipeline
Subclasses of SocketBase in zmq.socket.pipeline Modifier and Type Class Description class
Pull
class
Push
-
Uses of SocketBase in zmq.socket.pubsub
Subclasses of SocketBase in zmq.socket.pubsub Modifier and Type Class Description class
Pub
class
Sub
class
XPub
class
XSub
-
Uses of SocketBase in zmq.socket.reqrep
Subclasses of SocketBase in zmq.socket.reqrep Modifier and Type Class Description class
Dealer
class
Rep
class
Req
class
Router
Constructors in zmq.socket.reqrep with parameters of type SocketBase Constructor Description ReqSession(IOThread ioThread, boolean connect, SocketBase socket, Options options, Address addr)
-