use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class FloodlightRouterTopology method main.
/**
* Topology entry point.
*/
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
(new FloodlightRouterTopology(env)).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class IslLatencyTopology method main.
/**
* Entry point for local run of the topology.
*/
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
(new IslLatencyTopology(env)).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class OpenTsdbTopology method main.
/**
* main.
*/
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
(new OpenTsdbTopology(env)).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class PingTopology method main.
/**
* Topology entry point.
*/
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
(new PingTopology(env)).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class StatsTopology method main.
/**
* The topology deployer entry-point.
*
* @param args the command-line arguments.
*/
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
(new StatsTopology(env)).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
Aggregations