rgw/notify: process_queue() constructs wait tokens when spawning
process_queue() spawns several coroutines, then waits on a tokens_waiter
until all of them complete
but spawned coroutines don't start immediately. if we call
waiter.async_wait() before any of the coroutine functions get spawned,
it will find `pending_tokens == 0` and return immediately
instead of constructing each token inside the spawned coroutine
function, construct them outside of spawn and capture them in the lambda
to extend their lifetime until the coroutine's completion