> When relying on WRITE events using the ACE_WFMO_Reactor, you must
> therefore continue to write until the connection closes or the socket
> becomes flow controlled, i.e., a send fails with EWOULDBLOCK.
if ( write() == EWOULDBLOCK ) then {
...
. ...
...
wmfo_reactor->handle_events()
}
what happens when the socket transitions from flow-controlled to writeable
after the call to write but before the call to handle_events()? If WFMO, is
not going to notify the caller about the transition, then using WFMO_Reactor
for socket write notification would not be reliable, and hence should never
be used...
Regards
Sreeram
Tachyon Technologies