Oliver Eisenbarth
04/18/2023, 3:58 PMgh-alerts-subscriptions-kotlin
. Could someone explain the rationale for SpringScope
to me?simon.vergauwen
04/18/2023, 4:06 PMSpringScope
is a CoroutineScope
that is tied to the lifecycle of Spring using DestroyableBean
.
So when the server shuts down it also cancels all the running futures.simon.vergauwen
04/18/2023, 4:07 PMsuspend
or Reactor integrationOliver Eisenbarth
04/18/2023, 4:08 PM