Package | Description |
---|---|
org.zeromq | |
org.zeromq.api | |
org.zeromq.jzmq | |
org.zeromq.jzmq.bstar | |
org.zeromq.jzmq.sockets |
Modifier and Type | Method and Description |
---|---|
static SocketBuilder |
Sockets.buildSocket(SocketType socketType)
Create a builder capable of constructing ØMQ Sockets of the given socket type.
|
Modifier and Type | Method and Description |
---|---|
SocketBuilder |
Context.buildSocket(SocketType type)
Create a ØMQ Socket of type SocketType
|
SocketBuilder |
Routable.withRouterMandatory()
Set the 'router mandatory' socket option.
|
Modifier and Type | Method and Description |
---|---|
SocketBuilder |
ManagedContext.buildSocket(SocketType type) |
Modifier and Type | Class and Description |
---|---|
class |
BinaryStarSocketBuilder |
Modifier and Type | Class and Description |
---|---|
class |
DealerSocketBuilder |
class |
PairSocketBuilder |
class |
PubSocketBuilder |
class |
PullSocketBuilder |
class |
PushSocketBuilder
For building sockets of type PUSH.
|
class |
RepSocketBuilder |
class |
ReqSocketBuilder |
class |
RouterSocketBuilder |
class |
SubSocketBuilder |
class |
XPubSocketBuilder |
class |
XSubSocketBuilder |
Modifier and Type | Method and Description |
---|---|
SocketBuilder |
SocketBuilder.withBackgroundable(Backgroundable backgroundable) |
SocketBuilder |
SocketBuilder.withIdentity(byte[] identity)
Set the socket identity of the specified socket.
|
SocketBuilder |
SocketBuilder.withLinger(int lingerMS)
Set the linger period for the specified socket.
|
SocketBuilder |
SocketBuilder.withLinger(long lingerMS)
Deprecated.
The linger option has only integer range, use
withLinger(int) instead. |
SocketBuilder |
SocketBuilder.withReceiveHighWatermark(int receiveHWM)
The RECVHWM option shall set the high water mark (HWM) for inbound messages on the specified socket.
|
SocketBuilder |
SocketBuilder.withReceiveHighWatermark(long receiveHWM)
Deprecated.
This option uses integer range, use
withReceiveHighWatermark(int) instead. |
SocketBuilder |
SocketBuilder.withReceiveTimeout(int receiveTimeout) |
SocketBuilder |
RouterSocketBuilder.withRouterMandatory() |
SocketBuilder |
SocketBuilder.withSendHighWatermark(int sendHWM)
Set the send high watermark.
|
SocketBuilder |
SocketBuilder.withSendHighWatermark(long sendHWM)
Deprecated.
This option uses integer range, use
withSendHighWatermark(int) instead. |
SocketBuilder |
SocketBuilder.withSendTimeout(int sendTimeout) |
SocketBuilder |
SocketBuilder.withSwap(long swapSize)
The swap option shall set the disk offload (swap) size for the specified socket.
|
Copyright © 2019. All rights reserved.