방법: 정기적으로 메시지 보내기
이 예제에서는 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 프로젝트 또는 report-progress.cpp 파일에 붙여넣고 Visual Studio 2010 명령 프롬프트 창에서 다음 명령을 실행합니다.
cl.exe /EHsc report-progress.cpp