Module implements multithreaded job manager with fibers (coroutines). Thanks to fibers any task can be stopped in the middle of execution and started again by this manager. Fibers are bound to one thread due to TLS issues and performance reasons.
See Source File
Module implements multithreaded job manager with fibers (coroutines). Thanks to fibers any task can be stopped in the middle of execution and started again by this manager. Fibers are bound to one thread due to TLS issues and performance reasons.