blob: 424e3481f7813cd90011ca733ec173376a571ff4 [file] [log] [blame]
Jonathan Hart335ef462014-10-16 08:20:46 -07001package org.onlab.onos.sdnip;
2
3/**
4 * An interface to receive route updates from route providers.
5 */
6public interface RouteListener {
7 /**
8 * Receives a route update from a route provider.
9 *
10 * @param routeUpdate the updated route information
11 */
12 public void update(RouteUpdate routeUpdate);
13}