launch coroutines from initializers, thunks & reducers
coroutines can now be launched from initializers, thunks and reducers like this:
thunk {
launch(JobConfig(true)) {
load(post)
}
}
With JobConfig(true)) previously launched coroutines would be cancelled before the new one is started.