Author: abhinav

akka

Akka Actor LifeCycle

Reading Time: 2 minutes In this blog we’ll discuss about the Akka Actor Lifecycle. First, let’s understand the Akka actors. Akka Actor Actors are the unit of execution in Akka. The Actor model is an abstraction that makes it easier to write correct concurrent, parallel and distributed systems. Its only responsibility is to properly recognise the type of message it has received and take action accordingly. Actor Lifecycle The Continue Reading

Swagger Integration In Akka Http Services.

Reading Time: 3 minutes This blog will help you that how Swagger UI can be generated with Akka HTTP. Swagger allows developers to effectively interact and try out each and every route that your application exposes and it automatically generates UI from the Swagger specification. The visual documentation makes it easy for developers and clients to interact with the application. You can read more about Swagger UI from here and Akka HTTP from here. Now Continue Reading

Build Rest Api Using Akka HTTP

Reading Time: 2 minutes In this blog, I will discuss how we can create rest API using akka HTTP. So lets begin with the introduction of the akka HTTP. What is Akka HTTP ? As we know that Akka is a popular actor-based toolkit for building concurrent and distributed applications in the JVM. And these applications mostly use Scala or Java.It has several modules that help to build such Continue Reading

Introduction to play framework

Reading Time: 3 minutes In this blog we will discuss about the basics of the play framework. So let’s start with the introduction of the play framework. What is Play framework? Play is a lightweight open source framework develop by the Lightbend. Companies such as LinkedIn, Coursera, Verizon and many more already work with Play. So basically it is a web framework for the JVM that breaks away from Continue Reading

The Basics of Akka Streams

Reading Time: 3 minutes In this blog, I will discuss the basics of the Akka Streams. So lets start with the introduction of Akka Stream. What is Akka Stream ? Lets understand stream first, So Stream is basically a flow of sequence of large amount of data that can be infinite from one source to another. Akka Streams is a module built on top of Akka Actors to make Continue Reading