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

@@ -197,3 +197,16 @@ int zmq::sub_t::fq (zmq_msg_t *msg_, int flags_)
errno = EAGAIN;
return -1;
}
bool zmq::sub_t::xhas_in ()
{
// TODO: This is more complex as we have to ignore all the messages that
// don't fit the filter.
zmq_assert (false);
return false;
}
bool zmq::sub_t::xhas_out ()
{
return false;
}