Concurrency with LMAX Disruptor – An Introduction Java Java Concurrency 1. Overview This article introduces the LMAX Disruptor and talks about how it helps to achieve software concurrency with low latency. We will also see a basic usage of the Disruptor library. 2. What Is a Disruptor? Disruptor is an… Continue Reading lmax-disruptor-concurrency

Static and Default Methods in Interfaces in Java 1. Overview Java 8 brought to the table a few brand new features, including lambda expressions, functional interfaces, method references, streams, Optional, and static and default methods in interfaces. Some of them have been already covered in this article. Nonetheless, static and… Continue Reading java-static-default-methods