Uses of Class
org.zeromq.SocketType
-
Packages that use SocketType Package Description org.zeromq Provides high-level bindings for ØMQ. -
-
Uses of SocketType in org.zeromq
Methods in org.zeromq that return SocketType Modifier and Type Method Description SocketType
ZMQ.Socket. getSocketType()
The 'ZMQ_TYPE option shall retrieve the socket type for the specified 'socket'.SocketType
ZSocket. getSocketType()
Retrieve the socket type for the current '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.Methods in org.zeromq with parameters of type SocketType Modifier and Type Method 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.Constructors in org.zeromq with parameters of type SocketType Constructor Description Socket(ZContext context, SocketType type)
Class constructor.Socket(ZMQ.Context context, SocketType type)
Class constructor.ZSocket(SocketType socketType)
Create a ZeroMQ socket
-