Understanding Akka Streams and Its Components
Reading Time: 4 minutes Overview In this blog, we’ll be understand about akka streams and its components. Also, we’ll do a simple exercise that involves each of these components. Introduction Stream A...
View ArticleSynchronous Testing In Akka ToolKit | Testing Classic Akka Actors
Reading Time: 3 minutes Akka, a free open source toolkit simplifying the construction of concurrent and distributed systems/applications. In this blog, we are gonna discuss Testing the Akka Actors...
View ArticleAkka Streams | Three Basic Components
Reading Time: 3 minutes Akka, a free open source toolkit simplifying the construction of concurrent and distributed system/application. We have already deal with Akka Actors where we learnt about the...
View ArticleThe deadly combination of Akka with Scala
Reading Time: 3 minutes Hi, today in this blog we are going to work with Akka using the Scala Programming Language. In today’s blog, we are going to learn the basics of the Akka using Scala. What are...
View ArticleGetting Started with Spark 3
Reading Time: 4 minutes Introduction to Apache Spark Big Data processing frameworks like Apache Spark provides an interface for programming data clusters using fault tolerance and data parallelism....
View ArticleAkka Stopping Actors
Reading Time: 2 minutes In Akka, you can stop Actors by invoking the stop() method of either ActorContext or ActorSystem class. ActorContext is used to stop child actor and ActorSystem is used to stop...
View ArticleHow to Schedule Messages or Tasks in Akka?
Reading Time: 2 minutes In this blog, we’ll see how to schedule sending of messages to actors or execution of tasks(functions or Runnable) at a specific point of time in future or maybe repeatedly over...
View ArticleIntroduction to Finite State Machines
Reading Time: 2 minutes In this we are discuss about the Finite State Machines(FSM) implementation using the Akka Actor Model. Finite State Machines First we go through the the proper defination of FSM...
View ArticleIntroduction to Akka Actors and Child Actors
Reading Time: 3 minutes Introduction In this blog, I will be explaining the basics of Akka, actors, and the way they are created. Therefore, I am naming this blog “Introduction to Akka Actors and Child...
View ArticleGetting started with Zio-Http
Reading Time: 6 minutes What is Zio? ZIO is a functional programming library for building concurrent and asynchronous applications in Scala. It provides a set of composable and type-safe abstractions...
View Article