mosis24DEVS/examples/queueing/job.py
2017-04-06 12:02:58 +02:00

5 lines
179 B
Python

class Job:
def __init__(self, size, creation_time):
# Jobs have a size and creation_time parameter
self.size = size
self.creation_time = creation_time