pharo-contributions / taskit

TaskIt is a library that ease Process usage in Pharo. It provides abstractions to execute and synchronize concurrent tasks, and several pre-built mechanisms that are useful for many application developers.
MIT License
43 stars 24 forks source link

Services should have priorities #64

Closed bouraqadi closed 4 years ago

bouraqadi commented 4 years ago

The priority of a service is the priority of the underlying process. Currently, this priority is implicit. It is "inherited" from the process that starts the service. Instead, it should be explicit. One should be able to set the priority of a service.

bouraqadi commented 4 years ago

65 is the corresponding fix. For some reason it got a different number :-(

bouraqadi commented 4 years ago

Pull request #68 is the one to use. It fixes a bug.