<@U0BAF68H2>: There is a way if you wrap the defau...
# kovenant
m
@alex.hart: There is a way if you wrap the default target runnable with your own during configuration, like so:
Copy code
Kovenant.context {
        workerContext.jvmDispatcher {
            threadFactory = {
                target, dispatcherName, id ->
                val wrapper = Runnable {
                    android.os.Process.threadPriority = android.os.Process.THREAD_PRIORITY_BACKGROUND
                    target.run()
                }
                Thread(wrapper, "$dispatcherName-$id")
            }
        }
    }