diff options
Diffstat (limited to 'opendc/opendc-compute/src/main')
| -rw-r--r-- | opendc/opendc-compute/src/main/kotlin/com/atlarge/opendc/compute/metal/driver/SimpleBareMetalDriver.kt (renamed from opendc/opendc-compute/src/main/kotlin/com/atlarge/opendc/compute/metal/driver/FakeBareMetalDriver.kt) | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/opendc/opendc-compute/src/main/kotlin/com/atlarge/opendc/compute/metal/driver/FakeBareMetalDriver.kt b/opendc/opendc-compute/src/main/kotlin/com/atlarge/opendc/compute/metal/driver/SimpleBareMetalDriver.kt index cc4cc46c..56fee524 100644 --- a/opendc/opendc-compute/src/main/kotlin/com/atlarge/opendc/compute/metal/driver/FakeBareMetalDriver.kt +++ b/opendc/opendc-compute/src/main/kotlin/com/atlarge/opendc/compute/metal/driver/SimpleBareMetalDriver.kt @@ -39,14 +39,13 @@ import kotlin.math.max import kotlinx.coroutines.delay /** - * A implementation of the [BareMetalDriver] that simulates an [Image] running on a bare-metal machine, but performs - * not actual computation. + * A basic implementation of the [BareMetalDriver] that simulates an [Image] running on a bare-metal machine. * * @param uid The unique identifier of the machine. * @param name An optional name of the machine. * @param flavor The hardware configuration of the machine. */ -public class FakeBareMetalDriver( +public class SimpleBareMetalDriver( uid: UUID, name: String, private val flavor: ServerFlavor |
