Java Timer

Learn to use Java Timer and TimerTask to get the most out of it. Schedule a delayed onetime task, a daily task or just repeat on an interval.

How to Kill Java Thread

How to Kill Java Thread In this article, we will discuss the clean way to Kill Java Thread, this is necessary to understand as Java had already deprecated Thread.stop() methods.   Introduction … Read more

Functional Interfaces in Java 8

This post works as an introduction to the Functional Interfaces in Java 8. We will cover some basics of the Functional Interfaces introduced in Java 8.   Functional Interfaces in Java 8 … Read more

Math.pow in Java

Learn the process of Using Math.pow in Java to calculate the power of any base. Learn how to use this method to get results in int or double.

JVM Parameters

Introduction to JVM Parameters In this post, we will be covering some of the most important and critical JVM Parameters which can be used to configure and fine tune JVM. … Read more

Java NIO Selector

Java NIO Selector In this post, we will explore feature and the basic understanding of Java NIO Selector API. The selector is an NIO component with an ability to monitor … Read more