Author: Abhinav Sharma

Scala: Field And Method

Reading Time: 3 minutes In this blog, we will discuss about Scala fields and methods. As we know that fields in any language used to store the information and methods are use to define the behavior of the object. Let’s discuss more about both of them in detail. What are fields in Scala? Fields are basically keeping the state of an object. Unlike in Java, Scala fields are of Continue Reading

Working With Akka Quartz Scheduler

Reading Time: 2 minutes In this blog, I am going to discuss how you can schedule tasks with the help of akka quartz scheduler. Also, we can use akka scheduler to execute tasks but akka scheduler is not design for the long-term scheduling. Instead of this, we use akka quartz scheduler. With the help of akka quartz scheduler, we can execute the task on the basis of cron expression. Continue Reading

Scala: Class and Object

Reading Time: 3 minutes In this blog, I am going to discuss about the most important feature of the OOPs language, i.e., Classes and Objects in Scala. What is a Scala Class ? Scala classes are blueprint or template for creating objects. Moreover they contain information of fields, methods, constructor, super classes, etc. So with the help of class keyword we can define the class. To access the members Continue Reading