Power of Predicates

brown and black brick wall

A secret recipe to spice up your java program Ever wonder where we can use the predicates ? I was writing a piece of logic which involved classifying data into three groups based on three variables . The code looked…

One Page Guide to kafka

black transmission tower during daytime

What is Kafka ? Apache Kafka is a community distributed event streaming platform capable of handling trillions of events a day. Initially conceived as a messaging queue, Kafka is based on an abstraction of a distributed commit log. TLDR; In…

Java 8 Streams

forest stream

Streams are one of the most powerful features of Java 8 which has changed the way we write java programs/process What are streams ?As per official docs , Stream API provides class with which we can support functional-style operations like…