All pastes #2052134 Raw Edit

Stuff

public text v1 · immutable
#2052134 ·published 2011-04-30 04:40 UTC
rendered paste body
while(applicationRunning)
{
     checkQueues();
}

private Queue<Item> itemQueue;

function checkQueues()
{
     if(itemQueue.Count == 0)
          return;

     Item item = itemQueue.Pop();
     item.Update();
}