class Puma::ThreadPool

def backlog


How many objects have yet to be processed by the pool?
def backlog
  with_mutex { @todo.size }
end