mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Only one thread to build. For now.
This commit is contained in:
parent
203373deb8
commit
9f04b26a0a
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ interface IThreadWorkerFactory<T> {
|
|||
}
|
||||
|
||||
class DynamicGraphExecutor<T>(val graph : DynamicGraph<T>, val factory: IThreadWorkerFactory<T>) {
|
||||
val executor = Executors.newFixedThreadPool(5, NamedThreadFactory("DynamicGraphExecutor"))
|
||||
val executor = Executors.newFixedThreadPool(1, NamedThreadFactory("DynamicGraphExecutor"))
|
||||
val completion = ExecutorCompletionService<TaskResult2<T>>(executor)
|
||||
|
||||
fun run() : TaskResult {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue