方法: メッセージを定期的に送信する
次の使用例を使用する方法を示しています、 concurrency::timer クラスは、一定の間隔でメッセージを送信します。
使用例
次の例では、timer オブジェクトを使用して、時間のかかる操作中に進行状況を報告します。この例のリンク、 timerオブジェクトは、 concurrency::call オブジェクト。call オブジェクトは、プログレス インジケーターをコンソールに定期的に出力します。Concurrency::timer::start 、別のコンテキストで、タイマーを実行します。perform_lengthy_operation関数呼び出し、 concurrency::wait 、時間のかかる操作をシミュレートするのには、メインのコンテキストでの関数。
// report-progress.cpp
// compile with: /EHsc
#include <agents.h>
#include <iostream>
using namespace concurrency;
using namespace std;
// Simulates a lengthy operation.
void perform_lengthy_operation()
{
// Yield the current context for one second.
wait(1000);
}
int wmain()
{
// Create a call object that prints a single character to the console.
call<wchar_t> report_progress([](wchar_t c) {
wcout << c;
});
// Create a timer object that sends the dot character to the
// call object every 100 milliseconds.
timer<wchar_t> progress_timer(100, L'.', &report_progress, true);
wcout << L"Performing a lengthy operation";
// Start the timer on a separate context.
progress_timer.start();
// Perform a lengthy operation on the main context.
perform_lengthy_operation();
// Stop the timer and print a message.
progress_timer.stop();
wcout << L"done.";
}
この例では、次のサンプル出力が生成されます。
Performing a lengthy operation..........done.
コードのコンパイル
コード例をコピーして、Visual Studio プロジェクトでは、貼り付けるまたはという名前のファイルに貼り付けてレポート-progress.cpp と、Visual Studio のコマンド プロンプト ウィンドウで次のコマンドを実行します。
cl.exe /EHsc report-progress.cpp