14.10.16.8

次に、ポーリング・ループの例を示します:
// C++
for (;;) {
if (orb->work_pending()) {
orb->perform_work();
}
// do other things
// sleep?
}