Hello readers, as you have visited here, you must be aware of Interfaces in Java. Before Java 8, all methods defined in an interface are public and abstract by default. After Java 8, there were certain enhancements in interfaces. Amongst all the enhancements in Java 8, one of them is “Functional Interface”. What are Functional Interfaces? … Continue reading Functional Interfaces In Java8
Tag: java8
What after Futures – CompletableFuture
Hello readers, in this blog, I'll be covering about the limitations of futures and how they were covered in Java 8's CompletableFuture. To know about threading and futures in java, you can refer to my blog: Threading and Futures in Java. Before CompletableFuture - Futures Future is used to hold the returned value from the … Continue reading What after Futures – CompletableFuture
Threading and Futures in Java
Welcome readers, this blog is all about threading in Java. After reading this, you would be comfortable enough to program multi-threaded applications. Here, you will learn about java threads, thread pools and the concept of java future. Java Threading: The Beginning In Java, the concept of multi-threading was there from the first version itself. In … Continue reading Threading and Futures in Java


