It's really just an optimization for queues/cron/pubsub, not really a requirement for anything I'm doing. Hinting that there will be outbound requests & to what region would be nice to have.
For my use case, I have a small product that exposes an API and pulls data to serve from external sites. It both does this on demand and on a schedule, to keep upstream data fresh.
It has some complicated internal routing to do based on the upstream resource requested, and one of those routings is what region data is requested from, ie European data is only available from Europe each routing step is another queue and this makes a small tree of queues. To improve latency it'd be great to have Europe specific queues to be attached to European data centers.
I can give more details once I've started actually porting part of the product to cloudflare queues. The current code base is very stateful so specifics don't really translate.