|
method |
description and examples |
variables data type |
|
registers a socket for polling for events:
CALL poller_name.Register(socket_name, "event_01", "event_02", "event_03")
Depending on the number of the parameters specified, registers a socket for:
CALL poller_name.Register(socket_name)
CALL poller_name.Register(socket_name, "event_01"")
CALL poller_name.Register(socket_name, "event_01", "event_02")
CALL poller_name.Register(socket_name, "event_01", "event_02", "event_03")
|
ZMQ.Socket for the parameter STRING for the event |
|
|
issues a polling call:
CALL poller_name.Poll() CALL poller_name.Poll(timeout)
When the timeout parameter is specified, the method will wait for the event to occur within the specified timeout (in milliseconds):
CALL poller_name.Poll(15)
|
||
|
checks whether the ZMQ.POLLERR event have occurred for the specified element:
CALL poller_name.Pollerr(INT)
|
||
|
checks whether the ZMQ.POLLIN event have occurred for the specified element:
CALL poller_name.Pollin(INT)
|
||
|
checks whether the ZMQ.POLLOUT event have occurred for the specified element:
CALL poller_name.Pollout(INT)
|
|
Any kind of error condition occurred in a socket.
|
|
|
At least, one byte of data has come to the socket and can be read without blocking.
|
|
|
At least, one byte of data was sent to the socket and can be written without blocking.
|