Package org.zeromq
Class ZMQ.Event
- java.lang.Object
-
- org.zeromq.ZMQ.Event
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAddress()Get the address.intgetEvent()ObjectgetValue()static ZMQ.Eventrecv(ZMQ.Socket socket)Receive an event from a monitor socket.static ZMQ.Eventrecv(ZMQ.Socket socket, int flags)Receive an event from a monitor socket.
-
-
-
Method Detail
-
getEvent
public int getEvent()
-
getValue
public Object getValue()
-
getAddress
public String getAddress()
Get the address. For libzmq versions 3.2.x the address will be an empty string.- Returns:
-
recv
public static ZMQ.Event recv(ZMQ.Socket socket, int flags) throws ZMQException
Receive an event from a monitor socket. For libzmq versions 3.2.x the address will be an empty string.- Parameters:
socket- the socketflags- the flags to apply to the receive operation.- Returns:
- the received event or null if no message was received.
- Throws:
ZMQException
-
recv
public static ZMQ.Event recv(ZMQ.Socket socket) throws ZMQException
Receive an event from a monitor socket. Does a blocking recv. For libzmq versions 3.2.x the address will be an empty string.- Parameters:
socket- the socket- Returns:
- the received event.
- Throws:
ZMQException
-
-