Updated null runtime to be renamed empty runtime (which is more appropriate)

Adjusted the changes from that and added in runtime constants for runtimes to use to know if stopped/started/??
This commit is contained in:
Joshua Harlow
2012-01-24 20:20:24 -08:00
parent 8db88809b4
commit f0ea9c3b2d
11 changed files with 87 additions and 58 deletions

View File

@@ -56,6 +56,6 @@ class QuantumInstaller(object):
raise NotImplementedError()
class QuantumRuntime(comp.NullRuntime):
class QuantumRuntime(comp.EmptyRuntime):
def __init__(self, *args, **kargs):
comp.NullRuntime.__init__(self, TYPE, *args, **kargs)
comp.EmptyRuntime.__init__(self, TYPE, *args, **kargs)