Hi Roger,
Originally posted by Roger Oliver:
Point-To-Point Messaging = One receiver AND ( One sender OR many senders ) ?
Message Sending Type Models:
Point-to-Point Type Messaging:
One message is sent from one sender to one receiver.
Pull-based.
Publish-and-Subscribe Type Messaging:
One message is sent from one sender (publisher) to one topic but thereby indirectly to all N receipients (subscribers) who have subscribed for this topic.
Push-based.
Originally posted by Roger Oliver:
Is PTP the same at "message queue system"?
I can not answer exactly about that phrase, but:
- PTP (Point-to-Point) works via a "virtual channel" called a "message queue".
- Publish-and-Subscribe works via a "virtual channel" called a "topic".
Thomas.