Anyone has any idea if the `ensureActive` orderin...
# android
a
Anyone has any idea if the
ensureActive
ordering is really matters here or its the same?
Copy code
val domainContent = contentUseCase.run(args)
ensureActive()
vs
Copy code
ensureActive()
val domainContent = contentUseCase.run(args)
Looks like its not the same. I have issue with the second case.