×
日本語のページを検索
  • すべての言語
  • 日本語のページを検索
すべての結果
2018/12/07 · io_serviceにできること. シングルスレッドでの非同期実行。Node.jsみたいな感じで単一スレッド上でキューに入っている処理を非同期に実行してくれます。
2017/12/03 · ASIO + Boost.Coroutine について. boost::asio::spawn を使うと非同期IOにありがちなコールバック地獄を避けて書けるようになります。
2012/11/20 · ハンドラを処理するメッセージループはio_service::run()で開始する · io_service::run()は処理の間ブロッキングするので別スレッドで呼び出す必要がある ...
2011/03/25 · async系関数を次々記述していき、最後にio_service::run()を使用することで、非同期処理が終わるまで待機することになるので、ゲームループでフレームごと ...
2011/04/09 · 非同期で、1〜20 までの合計を計算します。 #include <iostream> #include <boost/asio.hpp> #include <boost/bind.hpp> #include <boost/thread.hpp> ...
他の人はこちらも検索
boost::asio::io_context io_context; tcp_server server(io_context);. Run the io_context object so that it will perform asynchronous operations on your behalf.
Asio is a cross-platform C++ library for network and low-level I/O programming that provides developers with a consistent asynchronous model using a modern C++ ...
含まれない: run | 必須にする:run
Proactor is a software design pattern for event handling in which long running activities are running in an asynchronous part. A completion handler is called ...
2023/08/10 · The core concept of io_context is that it maintains an internal queue of tasks to do, and any code that calls run will run those tasks until it runs out of ...