Package | Description |
---|---|
org.zeromq |
Provides high-level bindings for ØMQ.
|
org.zeromq.proto |
Provides utility classes for ØMQ zproto.
|
org.zeromq.timer |
Provides timing utility classes for ØMQ.
|
zmq.util |
Modifier and Type | Class and Description |
---|---|
class |
ZTimer
Deprecated.
scheduled for removal in future release. Please use
ZTimer instead |
Modifier and Type | Method and Description |
---|---|
void |
ZContext.closeSelector(java.nio.channels.Selector selector)
Deprecated.
ZContext.createSelector() was exposed by mistake. while waiting for the API to disappear, this method is provided to allow releasing resources. |
byte[] |
ZMQ.Socket.getHeartbeatContext()
The ZMQ_HEARTBEAT_CONTEXT option shall set the ping context
of the peer for ZMTP heartbeats.
|
java.lang.Object[] |
ZMQ.Socket.recvBinaryPicture(java.lang.String picture)
Receive a binary encoded 'picture' message from the socket (or actor).
|
static void |
ZMsg.recvMsg(ZMQ.Socket socket,
int flags,
Consumer<ZMsg> handler)
This API is in DRAFT state and is subject to change at ANY time until declared stable
handle incoming message with a handler
|
static void |
ZMsg.recvMsg(ZMQ.Socket socket,
int flags,
Consumer<ZMsg> handler,
Consumer<ZMQException> exceptionHandler)
This API is in DRAFT state and is subject to change at ANY time until declared stable
handle incoming message with a handler
|
java.lang.Object[] |
ZMQ.Socket.recvPicture(java.lang.String picture)
Receive a 'picture' message to the socket (or actor).
|
boolean |
ZMQ.Socket.sendBinaryPicture(java.lang.String picture,
java.lang.Object... args)
Queues a binary encoded 'picture' message to the socket (or actor), so it can be sent.
|
boolean |
ZMQ.Socket.sendPicture(java.lang.String picture,
java.lang.Object... args)
Queues a 'picture' message to the socket (or actor), so it can be sent.
|
boolean |
ZMQ.Socket.setHeartbeatContext(byte[] pingContext)
The ZMQ_HEARTBEAT_CONTEXT option shall set the ping context
of the peer for ZMTP heartbeats.
|
Modifier and Type | Class and Description |
---|---|
class |
ZNeedle
Needle for de/serialization of data within a frame.
|
class |
ZPicture
De/serialization of data within a message.
|
Modifier and Type | Method and Description |
---|---|
ZMsg |
ZPicture.msgBinaryPicture(java.lang.String picture,
java.lang.Object... args)
Creates a binary encoded 'picture' message to the socket (or actor), so it can be sent.
|
java.lang.Object[] |
ZPicture.recvBinaryPicture(ZMQ.Socket socket,
java.lang.String picture)
Receive a binary encoded 'picture' message from the socket (or actor).
|
java.lang.Object[] |
ZPicture.recvPicture(ZMQ.Socket socket,
java.lang.String picture)
Receive a 'picture' message to the socket (or actor).
|
boolean |
ZPicture.sendBinaryPicture(ZMQ.Socket socket,
java.lang.String picture,
java.lang.Object... args) |
boolean |
ZPicture.sendPicture(ZMQ.Socket socket,
java.lang.String picture,
java.lang.Object... args)
Queues a 'picture' message to the socket (or actor), so it can be sent.
|
Modifier and Type | Interface and Description |
---|---|
interface |
TimerHandler
Called when the time has come to perform some action.
|
class |
ZTicker
Manages set of tickets and timers.
|
class |
ZTicket
Manages set of tickets.
|
class |
ZTimer
Manages set of timers.
|
Modifier and Type | Class and Description |
---|---|
class |
Timers
Manages set of timers.
|