2006-02-16 23:50:32 +01:00
|
|
|
|
2006-02-21 08:39:39 +01:00
|
|
|
import sgpem
|
2006-02-16 23:50:32 +01:00
|
|
|
from Abstract import *
|
|
|
|
|
2006-02-21 08:39:39 +01:00
|
|
|
class Policy(sgpem.Policy):
|
2006-02-19 17:22:53 +01:00
|
|
|
## @var Avoid instantiation of an abstract class
|
2006-02-16 23:50:32 +01:00
|
|
|
__metaclass__ = Metaclass
|
|
|
|
|
|
|
|
configure = AbstractMethod('configure')
|
|
|
|
sort_queue = AbstractMethod('sort_queue')
|
|
|
|
is_preemptive = AbstractMethod('is_preemptive')
|
|
|
|
is_time_sliced = AbstractMethod('is_time_sliced')
|