prepare for simulation fire
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
from clients import Client
|
||||
from apps import Application, ApplicationModule
|
||||
from bucketresources import BucketResource, BucketResource
|
||||
from stats import Stats
|
||||
from datacentre import Datacentre
|
||||
|
||||
|
||||
@@ -9,3 +10,11 @@ class Scheduler:
|
||||
self.clients: list[Client] = []
|
||||
self.cloud: Datacentre = Datacentre()
|
||||
self.edge: Datacentre = Datacentre()
|
||||
self.failedClients: list[Client] = []
|
||||
self.simulationLength: int = 0
|
||||
self.statsModule: Stats = Stats()
|
||||
|
||||
def runsimulation(self):
|
||||
for i in range(self.simulationLength):
|
||||
for currclient in self.clients:
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user