Got another question guys regarding coroutines : i...
# announcements
v
Got another question guys regarding coroutines : if i understand it correctly assuming that one uses coroutines properly and all IO operations are suspendable is it correct to assume that i could just use FJP for everything? I never used continuations (i'm not familiar with those even from other languages so this is new concept for me) but from the definition i see that if i got my work done on FJP worker, and i suspend then this worker is returned to the pool and keeps on doing other useful things while the coroutine is suspended... which means i dont need a dedicated IO pool for the app (that how i do it now in my software one FJP one IO chached thread pool)... so i can do everything on FJP?