Uses of Class
zmq.Ctx
-
Packages that use Ctx Package Description org.zeromq Provides high-level bindings for ØMQ.zmq Provides low-level bindings for ØMQ.zmq.io zmq.poll zmq.socket zmq.socket.clientserver zmq.socket.pipeline zmq.socket.pubsub zmq.socket.radiodish zmq.socket.reqrep zmq.socket.scattergather -
-
Uses of Ctx in org.zeromq
Fields in org.zeromq declared as Ctx Modifier and Type Field Description private Ctx
ManagedContext. ctx
private Ctx
ZMQ.Context. ctx
-
Uses of Ctx in zmq
Fields in zmq declared as Ctx Modifier and Type Field Description private Ctx
Signaler. ctx
private Ctx
ZObject. ctx
Methods in zmq that return Ctx Modifier and Type Method Description static Ctx
ZMQ. createContext()
protected Ctx
ZObject. getCtx()
static Ctx
ZMQ. init(int ioThreads)
Methods in zmq with parameters of type Ctx Modifier and Type Method Description private static void
ZMQ. checkContext(Ctx ctx)
private static void
ZMQ. destroyContext(Ctx ctx)
static int
ZMQ. getContextOption(Ctx ctx, int option)
static void
ZMQ. setContextOption(Ctx ctx, int option, int optval)
static SocketBase
ZMQ. socket(Ctx ctx, int type)
static void
ZMQ. term(Ctx ctx)
Constructors in zmq with parameters of type Ctx Constructor Description Mailbox(Ctx ctx, java.lang.String name, int tid)
MailboxSafe(Ctx ctx, java.util.concurrent.locks.ReentrantLock sync, java.lang.String name)
Own(Ctx parent, int tid)
Reaper(Ctx ctx, int tid)
Signaler(Ctx ctx, int pid, Errno errno)
SocketBase(Ctx parent, int tid, int sid)
SocketBase(Ctx parent, int tid, int sid, boolean threadSafe)
ZObject(Ctx ctx, int tid)
-
Uses of Ctx in zmq.io
Constructors in zmq.io with parameters of type Ctx Constructor Description IOThread(Ctx ctx, int tid)
-
Uses of Ctx in zmq.poll
Fields in zmq.poll declared as Ctx Modifier and Type Field Description private Ctx
Poller. ctx
Constructors in zmq.poll with parameters of type Ctx Constructor Description Poller(Ctx ctx, java.lang.String name)
-
Uses of Ctx in zmq.socket
Methods in zmq.socket with parameters of type Ctx 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)
Constructors in zmq.socket with parameters of type Ctx Constructor Description Channel(Ctx parent, int tid, int sid)
Pair(Ctx parent, int tid, int sid)
Peer(Ctx parent, int tid, int sid)
Raw(Ctx parent, int tid, int sid)
Stream(Ctx parent, int tid, int sid)
-
Uses of Ctx in zmq.socket.clientserver
Constructors in zmq.socket.clientserver with parameters of type Ctx Constructor Description Client(Ctx parent, int tid, int sid)
Server(Ctx parent, int tid, int sid)
-
Uses of Ctx in zmq.socket.pipeline
Constructors in zmq.socket.pipeline with parameters of type Ctx Constructor Description Pull(Ctx parent, int tid, int sid)
Push(Ctx parent, int tid, int sid)
-
Uses of Ctx in zmq.socket.pubsub
Constructors in zmq.socket.pubsub with parameters of type Ctx Constructor Description Pub(Ctx parent, int tid, int sid)
Sub(Ctx parent, int tid, int sid)
XPub(Ctx parent, int tid, int sid)
XSub(Ctx parent, int tid, int sid)
-
Uses of Ctx in zmq.socket.radiodish
Constructors in zmq.socket.radiodish with parameters of type Ctx Constructor Description Dish(Ctx parent, int tid, int sid)
Radio(Ctx parent, int tid, int sid)
-
Uses of Ctx in zmq.socket.reqrep
Constructors in zmq.socket.reqrep with parameters of type Ctx Constructor Description Dealer(Ctx parent, int tid, int sid)
Rep(Ctx parent, int tid, int sid)
Req(Ctx parent, int tid, int sid)
Router(Ctx parent, int tid, int sid)
-
Uses of Ctx in zmq.socket.scattergather
Constructors in zmq.socket.scattergather with parameters of type Ctx Constructor Description Gather(Ctx parent, int tid, int sid)
Scatter(Ctx parent, int tid, int sid)
-