Package | Description |
---|---|
org.zeromq |
Provides high-level bindings for ØMQ.
|
Modifier and Type | Method and Description |
---|---|
SocketType |
ZSocket.getSocketType()
Retrieve the socket type for the current 'socket'.
|
SocketType |
ZMQ.Socket.getSocketType()
The 'ZMQ_TYPE option shall retrieve the socket type for the specified
'socket'.
|
static SocketType |
SocketType.type(int baseType) |
static SocketType |
SocketType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SocketType[] |
SocketType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
ZMQ.Socket |
ZContext.createSocket(SocketType type)
Creates a new managed socket within this ZContext instance.
|
ZMQ.Socket |
ZMQ.Context.socket(SocketType type)
Creates a ØMQ socket within the specified context and return an opaque handle to the newly created socket.
|
Constructor and Description |
---|
Socket(ZContext context,
SocketType type)
Class constructor.
|
Socket(ZMQ.Context context,
SocketType type)
Class constructor.
|
ZSocket(SocketType socketType)
Create a ZeroMQ socket
|