johnoneil / Sequence

Code experiments in the area of sequencing events using boost C++11 functionality
0 stars 0 forks source link

Sequence class only services a single task per update. #1

Closed johnoneil closed 11 years ago

johnoneil commented 11 years ago

When Sequence class is updated, it can only update its topmost sequence ptr. However, it's desirable to keep servicing the top of its sequence as those complete.

In other words, tasks which complete in a single update should all be carried out in a single update cycle, not waiting for N updates to complete, finishing each one at a a time.