私のプラグインでは、新しいスレッドを開始し、そこからコールバックを取得したいと考えています:
私は持っている
function myCallback()
プラグインのスレッドから2秒ごとに呼び出したい。
どうすればできますか?
// this method calls from html-page:
void MyFirstPluginAPI::testEvent()
{
//fire_test();
// thread starting:
boost::thread my_thread(boost::bind(&MyFirstPluginAPI::hello_world, this));
}
void MyFirstPluginAPI::hello_world()
{
for(;;)
{
boost::posix_time::seconds SleepTime(2);
boost::this_thread::sleep(SleepTime);
// here i must call InvokeAsync("myCallback",FB::variant_list_of(0));
// how can i to do it?
}
}
どうもありがとうございました。