blob: 47f5a17d05b2ccee282a18aa600593bf672909a7 [file] [log] [blame]
Pavlin Radoslavov24409672014-08-20 16:45:11 -07001package net.onrc.onos.core.topology;
2
3import net.floodlightcontroller.core.module.IFloodlightService;
4
5/**
6 * Interface for providing the topology publisher service to other modules.
7 */
8public interface ITopologyPublisherService extends IFloodlightService {
9 /**
10 * Publishes Topology Batch Operations.
11 *
12 * @param tbo the Topology Batch Operations to publish
13 * @return true on success, otherwise false
14 */
15 public boolean publish(TopologyBatchOperation tbo);
16}