blob: 4b7a52d52a4102e77df1027dab8ab23a98e515c9 [file] [log] [blame]
tom32f66842014-08-27 19:27:47 -07001package org.onlab.onos.event;
2
3/**
4 * Abstraction of an entity capable of accepting events to be posted and
5 * then dispatching them to the appropriate event sink.
6 */
tom96dfcab2014-08-28 09:26:03 -07007public interface EventDeliveryService extends EventDispatcher, EventSinkRegistry {
tom32f66842014-08-27 19:27:47 -07008}