Class TopologicalLink
java.lang.Object
org.cloudsimplus.network.topologies.TopologicalLink
Represents a link (edge) of a network graph
where the network topology was defined
from a file in BRITE format.
- Since:
- CloudSim Toolkit 1.0
- Author:
- Thomas Hohnstein, Manoel Campos da Silva Filho
-
Constructor Summary
ConstructorsConstructorDescriptionTopologicalLink(int srcNode, int destNode, double delay, double bandwidth) Creates a new Topological Link. -
Method Summary
-
Constructor Details
-
TopologicalLink
public TopologicalLink(int srcNode, int destNode, double delay, double bandwidth) Creates a new Topological Link.- Parameters:
srcNode- the BRITE id of link's source node.destNode- the BRITE id of the destination node of the link.delay- the link delay of the connection (in seconds).bandwidth- the link bandwidth (in Megabits/s)
-