From d181c124b51d8fc2f9b3aa810eee03dfcf0d9913 Mon Sep 17 00:00:00 2001 From: Eduards Sizovs Date: Thu, 14 Feb 2019 17:10:15 -0500 Subject: [PATCH] add PipelinR (a command processing library) PipelinR has been battle-proven on production, as a service layer in some cool FinTech apps. PipelinR has helped teams switch from a giant service classes handling all use cases to small handlers following single responsibility principle. Unlike .NET (MediatR), Java does not have such a library yet. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fae5fc7..02ba2f2 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ A curated list of awesome Java frameworks, libraries and software. +* [sizovs/PipelinR](https://github.com/sizovs/PipelinR) – A lightweight command processing pipeline ❍ ⇢ ❍ ⇢ ❍ for your Java awesome app. * [iluwatar/java-design-patterns](https://github.com/iluwatar/java-design-patterns) - Design patterns implemented in Java * [elastic/elasticsearch](https://github.com/elastic/elasticsearch) - Open Source, Distributed, RESTful Search Engine * [ReactiveX/RxJava](https://github.com/ReactiveX/RxJava) - RxJava – Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM.