$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [asio] Synchronous/Asynchronous pattern
From: Igor R (boost.lists_at_[hidden])
Date: 2009-03-10 08:13:47
> Why is run_one better than poll_one in this case?
run_one() blocks until one async. operation completes. poll_one() just
runs one ready handler, and if nothing is ready yet, it does nothing
without blocking.