Pub sub pattern using queueset

Hi all.

I’m writing my own publisher and subscriber where I can have multiple subscribers subscribing to a message and I’m wondering if multiple tasks can block on the same queueset, waiting for a message to be publish and then I can distribute the message to the subscribers?

Thanks

The semantics for a queue set are the same as for a queue, so multiple tasks can block on the queue set but only the highest priority blocked task will be unblocked when a message is posted to a queue within the set.