Package net.floodlightcontroller.debugevent

Examples of net.floodlightcontroller.debugevent.NullDebugEvent


        registerTopologyDebugEvents();
    }

    protected void registerTopologyDebugEvents() throws FloodlightModuleException {
        if (debugEvents == null) {
            debugEvents = new NullDebugEvent();
        }
        try {
            evTopology =
                debugEvents.registerEvent(PACKAGE, "topologyevent",
                                          "Topology Computation",
View Full Code Here


        this.addListener(new DeviceDebugEventLogger());
    }

    private void registerDeviceManagerDebugEvents() throws FloodlightModuleException {
        if (debugEvents == null) {
            debugEvents = new NullDebugEvent();
        }
        try {
            evDevice =
                debugEvents.registerEvent(PACKAGE, "hostevent",
                                          "Host added, removed, updated, or moved",
View Full Code Here

    }


    private void registerControllerDebugEvents() throws FloodlightModuleException {
        if (debugEvents == null) {
            debugEvents = new NullDebugEvent();
        }
        try {
            evSwitch = debugEvents.registerEvent(
                               Counters.prefix, "switchevent",
                               "Switch connected, disconnected or port changed",
View Full Code Here

    }

    private void registerLinkDiscoveryDebugEvents() throws FloodlightModuleException {
        if (debugEvents == null) {
            log.error("Debug Event Service not found.");
            debugEvents = new NullDebugEvent();
        }

        try {
            evDirectLink = debugEvents.registerEvent(
                               PACKAGE, "linkevent",
View Full Code Here

TOP

Related Classes of net.floodlightcontroller.debugevent.NullDebugEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.