Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Content Based Router

How do we handle a situation where the implementation of a single logical function (e.g., inventory check) is spread across multiple physical systems?

Message Filter

How can a component avoid receiving uninteresting messages?

Recipient List

How do we route a message to a list of dynamically specified recipients?

Splitter

How can we process a message if it contains multiple elements, each of which may have to be processed in a different way?

Message Transformation

Image Added

Content Enricher

How do we communicate with another system if the message originator does not have all the required data items available?

Image Added

Content Filter

How do you simplify dealing with a large message, when you are interested only in a few data items?

Image Added

Normalizer

How do you process messages that are semantically equivalent, but arrive in a different format?

Messaging Endpoints

 

Messaging Mapper

How do you move data between domain objects and the messaging infrastructure while keeping the two independent of each other?

Event Driven Consumer

How can an application automatically consume messages as they become available?

Competing Consumers

How can a messaging client process multiple messages concurrently?

Message Dispatcher

How can multiple consumers on a single channel coordinate their message processing?

Selective Consumer

How can a message consumer select which messages it wishes to receive?

Durable Subscriber

How can a subscriber avoid missing messages while it's not listening for them?

 

Idempotent Consumer

How can a message receiver deal with duplicate messages?

...