Executors in NutshellThe Concurrency API introduces the concept of an ExecutorService as a higher level replacement for working with threads directly. Executors…Aug 30, 2021Aug 30, 2021
Clean Code, Best Practices for Professional Programmers.Coding best practices are a set of informal rules that helps improve the quality of a product. It is also a key to maintainability and…Jun 13, 2021Jun 13, 2021
Top 10 useful classes in JAVAIn Java everything is encapsulated under classes. Codes cannot exist outside of a class (JShell, Its Different) . I have listed here top…Apr 30, 2021Apr 30, 2021
Java HTTP/2 Client: From Blocking to AsynchronousAn HttpClient can be used to access any resource on the web via HTTP.Feb 21, 2021Feb 21, 2021
Embracing local variable type inference “var” in Javaint i = 10; this is the standard variable declaration in java, you have got the variable type here int followed by variable name and then…Jun 20, 20201Jun 20, 20201