CloudSim Simulator Pause and Stop This code is for simulator work for pause and start after simulation The Cloudsim API having number of class and class having method For pausing the simulator CloudSim.pauseSimulation() method for pause the simulation we have to pass the integer number for pausing the cloudsim simulator CloudSim.pauseSimulation(int) The resumeSimulation() method is use for CloudSim simulation start after the pause CloudSim.resumeSimulation(); Runnable monitor=new Runnable(){ Public void run(){ CloudSim.pauseSimulation(200); While(true){ If(CloudSim.isPaused()){ Break; } try{ Thred.sleep(100); }catch(InterruptedException e){ e.printStackTrace(); } Log.printLine(“\n\n”+CloudSim.clock()+”:The Simulation is paused for 5 sec \n\n”); try{ Thread.sleep(5000); }catch(InterruptedException e){ e.printStackTrace(); } //Add the cloudlet to the list and submit the list to the broker. CloudSim.resumeSimulation(); }; new Thread(monitor).start()...