class StatelyDB::Transaction::Queue

def each_item

Returns:
  • (void) -

Other tags:
    Yield: - Gives each item in the queue to the block.
def each_item
  loop do
    yield pop
  end
end