java-tutorials/aws-reactive/images/thread-per-client.txt
psevestre 2235656358 [BAEL-3562] AWS S3 with Java - Reactive Support (#8309)
* [BAEL-3164] Add spring-boot-jdbi module

* [BAEL-3164] Remove extra files

* [BAEL-3164] Update springboot main dependency

* Reset bad commit

* [BAEL-3562] Added basic code

* [BAEL-3562] Some refatoring

* [BAEL-3562] More refatoring

* [BAEL-3562] LiveTests
2019-12-08 12:39:07 -08:00

29 lines
740 B
Plaintext

participant Client 1
participant Client 2
participant Controller
participant Backend
Client 1-> Controller: POST Data
activate Client 1
activate Controller
Controller -> Backend: Save Data
activate Backend
note left of Controller #yellow: Controller blocked\nuntil result received
Backend --> Controller: Result
deactivate Backend
Controller --> Client 1: Result
deactivate Client 1
deactivate Controller
// 2nd Upload
Client 2-> Controller: POST Data
activate Client 2
activate Controller
Controller -> Backend: Save Data
activate Backend
note left of Controller #yellow: Controller blocket\nuntil result received
Backend --> Controller: Result
deactivate Backend
Controller --> Client 2: Result
deactivate Controller
deactivate Client 2