mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-29 04:17:57 +01:00
new interfaces for timers; the implementation is not changed yet
This commit is contained in:
@@ -33,8 +33,7 @@
|
||||
namespace zmq
|
||||
{
|
||||
|
||||
// Implements socket polling mechanism using the Solaris-specific
|
||||
// "/dev/poll" interface.
|
||||
// Implements socket polling mechanism using the "/dev/poll" interface.
|
||||
|
||||
class devpoll_t
|
||||
{
|
||||
@@ -52,8 +51,8 @@ namespace zmq
|
||||
void reset_pollin (handle_t handle_);
|
||||
void set_pollout (handle_t handle_);
|
||||
void reset_pollout (handle_t handle_);
|
||||
void add_timer (struct i_poll_events *events_);
|
||||
void cancel_timer (struct i_poll_events *events_);
|
||||
void add_timer (int timeout_, struct i_poll_events *events_, int id_);
|
||||
void cancel_timer (struct i_poll_events *events_, int id_);
|
||||
int get_load ();
|
||||
void start ();
|
||||
void stop ();
|
||||
|
||||
Reference in New Issue
Block a user