valentinajemuovic / banking-kata-java

Banking Kata (Java)
MIT License
342 stars 90 forks source link

Java Reactive Programming #76

Open valentinajemuovic opened 1 year ago

valentinajemuovic commented 1 year ago

Currently, we use blocking operations, e.g. see RealNationalIdentityProvider, part

.bodyToMono(UserDto.class)
                .block()

The goal is to make it non-blocking, using Mono/Flux

thced commented 1 year ago

Any thoughts around Project Loom?