Have you ever wonder why we have 4 kinds of different nested classes? What is the main difference between them? How we use it and where?
Continue reading “Why we need Inner and Inner static classes in Java?”
Category: Design Patterns
Actor Model – Java implementation
Recently I was watching Clean Code video series on Design patterns. I discovered for myself a revolutionary design pattern – Actor Model. Which allows systems with large numbers of asynchronous threads to share a common stack.
Continue reading “Actor Model – Java implementation”