I've looked at the Arrow w. Spring Boot example pr...
# arrow
o
I've looked at the Arrow w. Spring Boot example project
gh-alerts-subscriptions-kotlin
. Could someone explain the rationale for
SpringScope
to me?
s
SpringScope
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.
It’s preferable to just use
suspend
or Reactor integration
o
Nice. Thanks for explaining!