blob: 47f5a17d05b2ccee282a18aa600593bf672909a7 [file] [log] [blame]
package net.onrc.onos.core.topology;
import net.floodlightcontroller.core.module.IFloodlightService;
/**
* Interface for providing the topology publisher service to other modules.
*/
public interface ITopologyPublisherService extends IFloodlightService {
/**
* Publishes Topology Batch Operations.
*
* @param tbo the Topology Batch Operations to publish
* @return true on success, otherwise false
*/
public boolean publish(TopologyBatchOperation tbo);
}