blob: d8a5a953b0ed09fd873506f1b983c0b9c6118185 [file] [log] [blame]
tom95329eb2014-10-06 08:40:06 -07001package org.onlab.onos.net.intent.impl;
2
3import org.onlab.onos.net.intent.IntentId;
4
5/**
6 * Auxiliary delegate for integration of intent manager and flow trackerService.
7 */
8public interface TopologyChangeDelegate {
9
10 /**
11 * Notifies that topology has changed in such a way that the specified
12 * intents should be recompiled.
13 *
14 * @param intentIds intents that should be recompiled
15 */
16 void bumpIntents(Iterable<IntentId> intentIds);
17
tom95329eb2014-10-06 08:40:06 -070018}