In JMS topics are a core concept. It is the representation of the publish/subscribe pattern.
- The publisher publishes his messages on a channel
- The subscribers subscribe to that channel and receive messages from that channel
- The channel removes the message when every subscriber got the message
Is there a similar function in MSMQ/.NET?
Note: The publisher should not care about how many or which subscriber there are.