package test; import gridsim.GridSimCore; import java.util.Properties; import schedframe.exceptions.ModuleException; import schedframe.scheduling.plugin.grid.Module; import schedframe.scheduling.plugin.grid.ModuleType; public class EventManager extends GridSimCore implements Module{ public EventManager(String name) throws Exception { super(name, 1); } public void send(String entityName, double delay, int tag, Object data){ super.send(entityName, delay, tag, data); } public void send(int destId, double delay, int tag){ super.send(destId, delay, tag); } public void send(int destId, double delay, int tag, Object data){ super.send(destId, delay, tag, data); } public void init(Properties properties) throws ModuleException { } public void dispose() throws ModuleException { } public ModuleType getType() { return ModuleType.EVENT_MANAGER; } }