blob: 8b51e1ba5946c143959bcee26918a8f31b4403dc [file] [log] [blame]
package net.onrc.onos.core.topology;
/**
* Interface for publishing Topology Operations to the Topology Replication
* Writer.
*/
public interface ITopologyReplicationWriter {
/**
* Publishes Topology Batch Operations.
*
* @param tbo the Topology Batch Operations to publish
* @return true on success, otherwise false
*/
public boolean publish(TopologyBatchOperation tbo);
}