ZMQII-18: Implement I/O multiplexing (first approximation)

This commit is contained in:
Martin Sustrik
2009-10-01 10:56:17 +02:00
parent f2ff2c6e5c
commit cc631c4c66
19 changed files with 269 additions and 3 deletions

View File

@@ -364,6 +364,21 @@ int zmq::socket_base_t::close ()
return 0;
}
zmq::app_thread_t *zmq::socket_base_t::get_thread ()
{
return app_thread;
}
bool zmq::socket_base_t::has_in ()
{
return xhas_in ();
}
bool zmq::socket_base_t::has_out ()
{
return xhas_out ();
}
bool zmq::socket_base_t::register_session (const char *name_,
session_t *session_)
{