$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] Boost.Asio extensible to non network i/o?
From: Roman Shmelev (rshmelev_at_[hidden])
Date: 2009-06-01 02:33:17
Async file reading could be done in Windows. What I can give is the
link to Russian blog:
http://evgeny-lazin.blogspot.com/2008/12/boostasio.html
Everything that you described - could be achieved by asio.
You can configure number of working threads by running
io_service.run() from each of them.
I guess, at this point you _will_ need to syncronize access to
"controller" through some mutex or asio::strands
and it will not significantly lower performance.