AMAmol Moteinamolmote.hashnode.dev·Apr 18 · 7 min readLow Latency Parallel Processing Trading SystemIn this tutorial, we will be developing an two different microservices to demonstrate microservices based low latency trading application. these two microservice are FXRate API Service - responsible 00
AMAmol Moteinamolmote.hashnode.dev·Apr 5 · 9 min readJava Functional InterfaceWhat is a Functional interface? The interface which contains single abstract method is called Functional interface. Examples Runnable interface - run() Callable interface - call() Comparable interf00
AMAmol Moteinamolmote.hashnode.dev·Apr 5 · 6 min readJava Lambda ExpressionWhat is a Lambda? A lambda expression is an anonymous function A function without name Without access modifier Without return type Lambda provides a clear and concise way to implement functional 00
AMAmol Moteinamolmote.hashnode.dev·Apr 5 · 1 min readJava 8 FeaturesWhy Java 8 was a Landmark Release? Java 8 (March 2014) is the most significant Java release since Java 5. It brought functional programming idioms into a stringly-types object oriented language, enabl00
AMAmol Moteinamolmote.hashnode.dev·Apr 4 · 12 min readJava Stream APIWhat is the Java Stream API? Stream API provides a functional style mechanism for processing sequence of elements. It is introduced in Java 8(java.util.stream). A stream is NOT a data structure, it do00