blob: 7969022afe4e345fc309c9c5959269450d981228 [file] [log] [blame]
package org.onlab.onos.net.link;
import org.onlab.onos.net.provider.ProviderService;
/**
* Means for injecting link information into the core.
*/
public interface LinkProviderService extends ProviderService<LinkProvider> {
/**
* Signals that an infrastructure link has been detected.
*
* @param linkDescription link information
*/
void linkDetected(LinkDescription linkDescription);
/**
* Signals that an infrastructure link has disappeared.
*
* @param linkDescription link information
*/
void linkVanished(LinkDescription linkDescription);
}