it.unibo.coordination.Engines.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of linda-core Show documentation
Show all versions of linda-core Show documentation
Tuple-based Coordination environment
The newest version!
package it.unibo.coordination
import java.util.concurrent.ExecutorService
import java.util.concurrent.Executors
object Engines {
@JvmStatic
val defaultEngine: ExecutorService by lazy {
Executors.newSingleThreadExecutor()
}
}