Add queueing example model
This commit is contained in:
parent
2ca0c68e31
commit
d4aa028d4f
9 changed files with 825 additions and 0 deletions
5
examples/queueing/job.py
Normal file
5
examples/queueing/job.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
class Job:
|
||||
def __init__(self, size, creation_time):
|
||||
# Jobs have a size and creation_time parameter
|
||||
self.size = size
|
||||
self.creation_time = creation_time
|
||||
Loading…
Add table
Add a link
Reference in a new issue