use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class KafkaFilerTopology method main.
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
(new KafkaFilerTopology(env)).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class FlowHsTopology method main.
/**
* Launches and sets up the topology.
*
* @param args the command-line arguments.
*/
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
new FlowHsTopology(env).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class FlowMonitoringTopology method main.
/**
* Launches and sets up the topology.
*
* @param args the command-line arguments.
*/
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
new FlowMonitoringTopology(env).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class ControlTopology method main.
/**
* Topology uploader.
*/
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
(new ControlTopology(env)).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
use of org.openkilda.wfm.LaunchEnvironment in project open-kilda by telstra.
the class ConnectedDevicesTopology method main.
/**
* Main method to run topology.
*/
public static void main(String[] args) {
try {
LaunchEnvironment env = new LaunchEnvironment(args);
(new ConnectedDevicesTopology(env)).setup();
} catch (Exception e) {
System.exit(handleLaunchException(e));
}
}
Aggregations