Search in sources :

Example 6 with LaunchEnvironment

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));
    }
}
Also used : LaunchEnvironment(org.openkilda.wfm.LaunchEnvironment) ConfigurationException(org.openkilda.wfm.error.ConfigurationException)

Example 7 with LaunchEnvironment

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));
    }
}
Also used : LaunchEnvironment(org.openkilda.wfm.LaunchEnvironment)

Example 8 with LaunchEnvironment

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));
    }
}
Also used : LaunchEnvironment(org.openkilda.wfm.LaunchEnvironment)

Example 9 with LaunchEnvironment

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));
    }
}
Also used : LaunchEnvironment(org.openkilda.wfm.LaunchEnvironment)

Example 10 with LaunchEnvironment

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));
    }
}
Also used : LaunchEnvironment(org.openkilda.wfm.LaunchEnvironment)

Aggregations

LaunchEnvironment (org.openkilda.wfm.LaunchEnvironment)25 ConfigurationException (org.openkilda.wfm.ConfigurationException)8 Properties (java.util.Properties)3 Config (org.apache.storm.Config)2 StormTopology (org.apache.storm.generated.StormTopology)2 BeforeClass (org.junit.BeforeClass)2 StreamNameCollisionException (org.openkilda.wfm.StreamNameCollisionException)2 TestKafkaConsumer (org.openkilda.wfm.topology.TestKafkaConsumer)2 NameCollisionException (org.openkilda.wfm.NameCollisionException)1 ConfigurationException (org.openkilda.wfm.error.ConfigurationException)1