Publish/Subscribe using Scala and Akka EventBus
guideThis post in the second in a series on implementing publish/subscribe with Akka and Scala. The first post, Publish/Subscribe using Scala and Akka EventStream covers some facets of Scala and Akka that'll be skipped over in this article, so it...
Read more
Publish/Subscribe using Scala and Akka EventStream
guidePublish/Subscribe (aka: pub/sub) is a messaging pattern that helps decouple1 the sender and receiver of messages. Generally, this pattern is used across network(s) and provides ease of scalability and dynamic network topologies. The publish/subscribe pattern can also be used within...
Read more