public abstract class AbstractCustomGlobal
extends java.lang.Object
Constructor and Description |
---|
AbstractCustomGlobal() |
Modifier and Type | Method and Description |
---|---|
void |
addGlobalTimer(AbstractTimer t) |
java.util.LinkedList<AbstractTimer> |
getGlobalTimers() |
abstract boolean |
hasTerminated()
This method is used to tell when a simulation has finished.
|
abstract void |
postRound()
Implement this method to specify what should be executed after every
round step in synchronous simulation.
|
abstract void |
preRound()
Implement this method to specify what should be executed before every
round step in synchronous simulation.
|
abstract void |
preRun()
This method is executed before run a simulation.
|
void |
setGlobalTimers(java.util.LinkedList<AbstractTimer> globalTimers) |
public java.util.LinkedList<AbstractTimer> getGlobalTimers()
public void setGlobalTimers(java.util.LinkedList<AbstractTimer> globalTimers)
public void addGlobalTimer(AbstractTimer t)
public abstract boolean hasTerminated()
public abstract void preRun()
public abstract void preRound()
public abstract void postRound()