Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save javajack/8559155 to your computer and use it in GitHub Desktop.
Save javajack/8559155 to your computer and use it in GitHub Desktop.
# How Akka maps to EAI Patterns
Might be up for debate or just plain wrong. Just some notes I scribbled down some time ago.
-----------------------------------------------------------------------------------------------------------------
EAI PATTERN AKKA PATTERN REFERENCE
-----------------------------------------------------------------------------------------------------------------
Point to Point Channel Regular Actor Communication http://www.eaipatterns.com/PointToPointChannel.html
Event-Driven Consumer Regular Actor Receive http://www.eaipatterns.com/EventDrivenConsumer.html
Message Selector Actor with Stash http://www.eaipatterns.com/MessageSelector.html
Publish-Subscribe Channel Event Bus/DistributedPubSub http://www.eaipatterns.com/PublishSubscribeChannel.html
Dead Letter Channel DeadLetterActor http://www.eaipatterns.com/DeadLetterChannel.html
Return Address Implicit Sender Ref http://www.eaipatterns.com/ReturnAddress.html
Command or Event Message Akka Persistence http://www.eaipatterns.com/CommandMessage.html AND
http://www.eaipatterns.com/EventMessage.html
Request Reply Ask Pattern http://www.eaipatterns.com/RequestReply.html
Idempotent Receiver Idempotent Actor http://www.eaipatterns.com/IdempotentReceiver.html
Resequencer Message Sequence Ids http://www.eaipatterns.com/Resequencer.html
Aggregator Ask/Future composition http://www.eaipatterns.com/Aggregator.html
PollingConsumer Polling Actor http://www.eaipatterns.com/PollingConsumer.html
Wire Tap or Smart Proxy Forward Pattern http://www.eaipatterns.com/WireTap.html OR
http://www.eaipatterns.com/SmartProxy.html OR
http://www.eaipatterns.com/MessageTransformationIntro.html
Message Store Akka Persistence http://www.eaipatterns.com/MessageStore.html
Message Dispatcher BalancingDispatcher http://www.eaipatterns.com/MessageDispatcher.html
Messaging Gateway TypedActor/ClusterClient http://www.eaipatterns.com/MessagingGateway.html
Pipes and Filters Pipelining/Typed Channels http://www.eaipatterns.com/PipesAndFilters.html
Dynamic Router Adaptive Routers http://www.eaipatterns.com/DynamicRouter.html
Broadcast Aggregate ScatterGather Router http://www.eaipatterns.com/BroadcastAggregate.html
Content-Based Router ConsistentHashing Router http://www.eaipatterns.com/ContentBasedRouter.html
-----------------------------------------------------------------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment