Parallelism Example in Java Stream API
I am going to show you how to work with parallel stream in Java 8 or higher version of Java. In parallel computing a task is divided into…
I am going to show you how to work with parallel stream in Java 8 or higher version of Java. In parallel computing a task is divided into…
Introduction In this tutorial I am going to show you how to use Python client to work with Apache kafka distributed stream processing system. I will create Kafka…
Unique Strings/Objects In this tutorial you will see an example on how to find unique strings or objects using Java stream API. Stream API was introduced in Java…
In this tutorial we will see an example of event driven streaming using Spring Cloud Stream and Apache Kafka streaming platform. How do we deal with some events,…
Map To List Objects Here I will show you how to convert List of Map objects into List of objects using Java 8’s or later’s Stream API. The…
Introduction In this tutorial, I will show you how you are going to collect and convert objects using lambda expression in Java 8 stream API. I will collect…
Java 8 Filter This tutorial will show you how to use Java 8 stream API‘s filter() and map() methods. The filter() method in Java 8 or onward is…
Introduction In this tutorial I will explain about Java’s new API called stream, which was introduced in Java 8 and included in package java.util.stream. The stream API supports…
This tutorial shows how to read input from keyword using Java programming language. For example if your database connection string changes then you don’t need to worry because…