I’d like to share sample implementations for subjects that is explained here http://tutorials.jenkov.com/java-util-concurrent/index.html you can have check it out on my public repo
Category: Java
JavaFx 11 and Coretto 11, First JavaFX Hello Word Program
Hello folks, first of all why we use Coretto 11, simply because it’s improved version of OpenJDK and it is run by Amazon. Amazon did some changes to improve…
Android Services , Usage of PendingIntent Class and startService Method
Hello fellas, today I’d like to share with you the information on how to implement an Android Service that runs on background tasks. We use the startService method of…
Inner class in java
Inner class means one class which is a member of another class. There are basically four types of inner classes in java. 1) Nested Inner class 2) Method Local…